:root {
  --page-primary-color: #FFD700; /* Gold */
  --page-secondary-color: #1A1A1A; /* Dark Grey */
  --page-text-color-dark: #1A1A1A;
  --page-text-color-light: #FFFFFF;
  --page-accent-color: #FFC107; /* Slightly lighter gold */
  --page-background-light: #F8F8F8;
  --page-background-dark: #2C2C2C;
}

.page-index-review-tot88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-text-color-dark);
  background-color: var(--page-background-light);
}

.page-index-review-tot88-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-index-review-tot88 h1,
.page-index-review-tot88 h2,
.page-index-review-tot88 h3,
.page-index-review-tot88 h4 {
  color: var(--page-secondary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-index-review-tot88 h1 {
  font-size: 3.2em;
  text-align: center;
  color: var(--page-text-color-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-tot88 h2 {
  font-size: 2.5em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  color: var(--page-secondary-color);
}

.page-index-review-tot88 h3 {
  font-size: 1.8em;
  color: var(--page-secondary-color);
}

.page-index-review-tot88 p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--page-text-color-dark);
}

.page-index-review-tot88-cta-button,
.page-index-review-tot88-game-button,
.page-index-review-tot88-promo-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--page-primary-color);
  color: var(--page-text-color-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-index-review-tot88-cta-button:hover,
.page-index-review-tot88-game-button:hover,
.page-index-review-tot88-promo-button:hover {
  background: var(--page-accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* HERO Section */
.page-index-review-tot88-hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--page-secondary-color) 0%, var(--page-text-color-dark) 100%); /* Dark background for hero */
}

.page-index-review-tot88-hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-review-tot88-hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-height: 500px; /* Limit height for aesthetic */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-tot88-hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.page-index-review-tot88-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--page-text-color-light);
}

.page-index-review-tot88-hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--page-text-color-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Intro Section */
.page-index-review-tot88-intro-section {
  background-color: var(--page-background-light);
  padding: 60px 0;
  text-align: center;
}

.page-index-review-tot88-intro-section h2 {
  color: var(--page-secondary-color);
}

.page-index-review-tot88-intro-section p {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.15em;
}

.page-index-review-tot88-feature-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-index-review-tot88-feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1 1 280px;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-tot88-feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-tot88-feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-review-tot88-feature-item h3 {
  color: var(--page-primary-color);
  font-size: 1.5em;
}

.page-index-review-tot88-feature-item p {
  font-size: 1em;
  color: var(--page-text-color-dark);
}

/* Quick Links Section */
.page-index-review-tot88-quick-links {
  background-color: var(--page-background-dark);
  padding: 60px 0;
  text-align: center;
}

.page-index-review-tot88-quick-links h2 {
  color: var(--page-primary-color);
}

.page-index-review-tot88-quick-links p {
  color: var(--page-text-color-light);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index-review-tot88-link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-index-review-tot88-link-card {
  background-color: var(--page-secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  text-decoration: none;
  color: var(--page-text-color-light);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-review-tot88-link-card:hover {
  transform: translateY(-10px);
  background-color: #3a3a3a;
}

.page-index-review-tot88-link-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-review-tot88-link-card h3 {
  color: var(--page-primary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-index-review-tot88-link-card p {
  font-size: 0.95em;
  color: #cccccc;
}

/* Games Section */
.page-index-review-tot88-games-section {
  background-color: var(--page-background-light);
  padding: 60px 0;
}

.page-index-review-tot88-games-section h2 {
  color: var(--page-secondary-color);
}

.page-index-review-tot88-games-section p {
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.page-index-review-tot88-game-category {
  margin-bottom: 50px;
  text-align: center;
}

.page-index-review-tot88-game-category h3 {
  font-size: 2em;
  color: var(--page-primary-color);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-index-review-tot88-game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-tot88-game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-tot88-game-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-index-review-tot88-game-card h4 {
  font-size: 1.6em;
  color: var(--page-secondary-color);
  margin-bottom: 15px;
}

.page-index-review-tot88-game-card p {
  font-size: 1.05em;
  color: var(--page-text-color-dark);
  margin-bottom: 25px;
}

/* Promotions Section */
.page-index-review-tot88-promotions-section {
  background-color: var(--page-background-dark);
  padding: 60px 0;
  text-align: center;
}

.page-index-review-tot88-promotions-section h2 {
  color: var(--page-primary-color);
}

.page-index-review-tot88-promotions-section p {
  color: var(--page-text-color-light);
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-index-review-tot88-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-tot88-promo-card {
  background-color: var(--page-secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--page-text-color-light);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-review-tot88-promo-card:hover {
  transform: translateY(-8px);
  background-color: #3a3a3a;
}

.page-index-review-tot88-promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-review-tot88-promo-card h3 {
  color: var(--page-primary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-index-review-tot88-promo-card p {
  font-size: 0.95em;
  color: #cccccc;
  flex-grow: 1;
  margin-bottom: 25px;
}

/* Security & Support Section */
.page-index-review-tot88-security-support-section {
  background-color: var(--page-background-light);
  padding: 60px 0;
  text-align: center;
}

.page-index-review-tot88-security-support-section h2 {
  color: var(--page-secondary-color);
}

.page-index-review-tot88-security-support-section p {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-index-review-tot88-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-tot88-info-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-tot88-info-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-tot88-info-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-review-tot88-info-item h3 {
  color: var(--page-primary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-index-review-tot88-info-item p {
  font-size: 0.95em;
  color: var(--page-text-color-dark);
}

/* FAQ Section */
.page-index-review-tot88-faq-section {
  background-color: var(--page-background-dark);
  padding: 60px 0;
  text-align: center;
}

.page-index-review-tot88-faq-section h2 {
  color: var(--page-primary-color);
}

.page-index-review-tot88-faq-section p {
  color: var(--page-text-color-light);
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-index-review-tot88-faq-list {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 40px;
}

.page-index-review-tot88-faq-list .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-index-review-tot88-faq-list .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #3a3a3a;
  border: 1px solid #4a4a4a;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: var(--page-text-color-light);
}

.page-index-review-tot88-faq-list .faq-question:hover {
  background: #4a4a4a;
}

.page-index-review-tot88-faq-list .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--page-primary-color);
}

.page-index-review-tot88-faq-list .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--page-primary-color);
}

.page-index-review-tot88-faq-list .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-index-review-tot88-faq-list .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background: #2c2c2c;
  color: #cccccc;
  padding: 0 20px;
  text-align: left;
}

.page-index-review-tot88-faq-list .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px;
  border-radius: 0 0 8px 8px;
}

.page-index-review-tot88-faq-list .faq-answer p {
  margin: 0;
  color: #cccccc;
}

.page-index-review-tot88-faq-list .faq-answer a {
  color: var(--page-primary-color);
  text-decoration: underline;
}

.page-index-review-tot88-faq-list .faq-answer a:hover {
  color: var(--page-accent-color);
}

/* Blog Section */
.page-index-review-tot88-blog-section {
  background-color: var(--page-background-light);
  padding: 60px 0;
  text-align: center;
}

.page-index-review-tot88-blog-section h2 {
  color: var(--page-secondary-color);
}

.page-index-review-tot88-blog-section p {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-index-review-tot88-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-tot88-blog-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  text-decoration: none;
  color: var(--page-text-color-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page-index-review-tot88-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-tot88-blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.page-index-review-tot88-blog-card h3 {
  font-size: 1.35em;
  color: var(--page-secondary-color);
  margin: 20px 20px 10px 20px;
}

.page-index-review-tot88-blog-card p {
  font-size: 0.95em;
  color: #555555;
  margin: 0 20px 15px 20px;
  flex-grow: 1;
}

.page-index-review-tot88-blog-card span {
  font-size: 0.85em;
  color: #888888;
  margin: 0 20px 20px 20px;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-tot88-hero-content h1 {
    font-size: 2.8em;
  }
  .page-index-review-tot88-hero-content p {
    font-size: 1.1em;
  }
  .page-index-review-tot88 h2 {
    font-size: 2.2em;
  }
  .page-index-review-tot88 h3 {
    font-size: 1.6em;
  }
  .page-index-review-tot88 p {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-index-review-tot88-hero-section {
    padding: 40px 15px;
  }
  .page-index-review-tot88-hero-content h1 {
    font-size: 2.2em;
  }
  .page-index-review-tot88-hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-index-review-tot88-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-review-tot88 h2 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 25px;
  }
  .page-index-review-tot88 h3 {
    font-size: 1.4em;
  }
  .page-index-review-tot88-feature-list,
  .page-index-review-tot88-link-cards,
  .page-index-review-tot88-promo-grid,
  .page-index-review-tot88-info-grid,
  .page-index-review-tot88-blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-review-tot88-feature-item,
  .page-index-review-tot88-link-card,
  .page-index-review-tot88-promo-card,
  .page-index-review-tot88-info-item {
    max-width: 100%;
  }
  .page-index-review-tot88-game-category h3 {
    font-size: 1.6em;
  }
  .page-index-review-tot88-game-card h4 {
    font-size: 1.4em;
  }
  .page-index-review-tot88-game-image {
    height: 250px;
  }
  .page-index-review-tot88-faq-list .faq-question {
    padding: 15px;
  }
  .page-index-review-tot88-faq-list .faq-question h3 {
    font-size: 1.1em;
  }
  .page-index-review-tot88-faq-list .faq-toggle {
    font-size: 20px;
  }
  .page-index-review-tot88-faq-list .faq-answer {
    padding: 15px;
  }
  .page-index-review-tot88-blog-card h3 {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-index-review-tot88-hero-content h1 {
    font-size: 1.8em;
  }
  .page-index-review-tot88-hero-content p {
    font-size: 0.9em;
  }
  .page-index-review-tot88-cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-index-review-tot88 h2 {
    font-size: 1.5em;
  }
  .page-index-review-tot88 h3 {
    font-size: 1.2em;
  }
  .page-index-review-tot88-game-image {
    height: 200px;
  }
  .page-index-review-tot88-promo-image {
    height: 150px;
  }
}