:root {
  --primary-color: #8B0000; /* Deep Red */
  --secondary-color: #FFD700; /* Gold */
  --text-on-dark: #ffffff;
  --text-on-light: #333333;
  --bg-dark-body: #111; /* From shared.css */
  --bg-light-card: #ffffff;
  --bg-section-light: #f1f3f5;
  --border-color-light: #e0e0e0;
}

.page-index-review-tot88 {
  color: var(--text-on-dark); /* Default text color for the main content area due to dark body background */
  padding-top: 120px; /* Desktop: Adjust for fixed header */
}

.page-index-review-tot88__hero-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color) 60%, #5a0000); /* Darker red gradient for hero */
  color: var(--text-on-dark);
  padding: 60px 20px;
}

.page-index-review-tot88__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2; /* Subtle background image */
}

.page-index-review-tot88__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-index-review-tot88__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-review-tot88__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color); /* Gold title for prominence */
}

.page-index-review-tot88__main-title .highlight {
  color: var(--text-on-dark); /* White for keyword highlight */
}

.page-index-review-tot88__subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.5;
  color: var(--text-on-dark);
}

.page-index-review-tot88__cta-button {
  display: inline-block;
  padding: 18px 40px;
  background: var(--secondary-color); /* Gold button */
  color: var(--primary-color); /* Deep Red text on gold */
  text-decoration: none;
  border-radius: 8px;
  font-size: 22px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-index-review-tot88__cta-button:hover {
  background: #e0b800; /* Darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-tot88__section-title {
  font-size: 38px;
  font-weight: bold;
  color: var(--secondary-color); /* Gold title */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-index-review-tot88__section-title .highlight {
  color: var(--text-on-dark); /* White for keyword highlight */
}

.page-index-review-tot88__section-description {
  font-size: 18px;
  color: var(--text-on-dark);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.page-index-review-tot88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-index-review-tot88__dark-bg {
  background: var(--primary-color); /* Deep Red background */
  color: var(--text-on-dark); /* White text */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
  padding: 60px 40px;
}

.page-index-review-tot88__dark-bg p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-index-review-tot88__dark-bg p a {
  color: var(--secondary-color); /* Gold links on dark background */
  text-decoration: underline;
  font-weight: bold;
}

.page-index-review-tot88__dark-bg p a:hover {
  color: #e0b800; /* Darker gold on hover */
}

.page-index-review-tot88__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--secondary-color); /* Gold button */
  color: var(--primary-color); /* Deep Red text */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-index-review-tot88__btn-primary:hover {
  background: #e0b800; /* Darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__btn-center {
  display: block;
  margin: 30px auto 0 auto;
  text-align: center;
  max-width: 300px;
}

.page-index-review-tot88__mt-40 {
  margin-top: 40px !important;
}

.page-index-review-tot88__detailed-review-section {
  padding: 60px 0;
  background-color: var(--bg-section-light); /* Light background for review cards */
}

.page-index-review-tot88__detailed-review-section .page-index-review-tot88__section-title {
  color: var(--primary-color); /* Deep Red title on light background */
}

.page-index-review-tot88__detailed-review-section .page-index-review-tot88__section-title .highlight {
  color: var(--text-on-light); /* Dark text for keyword highlight */
}

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

.page-index-review-tot88__review-card {
  background: var(--bg-light-card); /* White card background */
  color: var(--text-on-light); /* Dark text */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-tot88__card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color); /* Deep Red title for cards */
}

.page-index-review-tot88__card-image {
  max-width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-tot88__review-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-on-light);
}

.page-index-review-tot88__core-games-section {
  padding: 60px 0;
}

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

.page-index-review-tot88__feature-card {
  background: var(--bg-light-card); /* White card background */
  color: var(--text-on-light); /* Dark text */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-tot88__feature-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-tot88__feature-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-index-review-tot88__feature-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-on-light);
}

.page-index-review-tot88__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color); /* Deep Red button */
  color: var(--text-on-dark); /* White text */
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
}

.page-index-review-tot88__btn-secondary:hover {
  background: #5a0000; /* Darker red on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-tot88__promotions-section {
  padding: 60px 0;
  background-color: var(--bg-section-light);
}

.page-index-review-tot88__promotions-section .page-index-review-tot88__section-title {
  color: var(--primary-color);
}

.page-index-review-tot88__promotions-section .page-index-review-tot88__section-title .highlight {
  color: var(--text-on-light);
}

.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: var(--bg-light-card);
  color: var(--text-on-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-tot88__promo-image {
  max-width: 100%;
  height: 180px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-tot88__promo-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-index-review-tot88__promo-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-on-light);
}

.page-index-review-tot88__faq-section {
  padding: 60px 0;
}

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

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

.page-index-review-tot88__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-index-review-tot88__faq-item.active .page-index-review-tot88__faq-answer {
  max-height: 2000px !important; /* Ensure it expands fully */
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.1); /* Light background on dark section */
  color: var(--text-on-dark);
  border-radius: 0 0 5px 5px;
}

.page-index-review-tot88__faq-answer p {
  color: var(--text-on-dark);
  line-height: 1.6;
  font-size: 16px;
}

.page-index-review-tot88__faq-answer p a {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-index-review-tot88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--primary-color); /* Deep Red question background */
  color: var(--text-on-dark); /* White text */
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index-review-tot88__faq-question:hover {
  background: #5a0000; /* Darker red on hover */
  border-color: #5a0000;
}

.page-index-review-tot88__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* Allow click on entire question div */
  color: var(--text-on-dark); /* White text */
}

.page-index-review-tot88__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color); /* Gold toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-index-review-tot88__faq-item.active .page-index-review-tot88__faq-toggle {
  color: var(--text-on-dark); /* White when active */
  transform: rotate(45deg); /* Rotate for minus sign effect */
}

@media (max-width: 1024px) {
  .page-index-review-tot88__main-title {
    font-size: 40px;
  }

  .page-index-review-tot88__subtitle {
    font-size: 18px;
  }

  .page-index-review-tot88__cta-button {
    padding: 15px 35px;
    font-size: 20px;
  }

  .page-index-review-tot88__section-title {
    font-size: 32px;
  }

  .page-index-review-tot88__dark-bg {
    padding: 40px 30px;
  }

  .page-index-review-tot88__review-grid,
  .page-index-review-tot88__game-features-grid,
  .page-index-review-tot88__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .page-index-review-tot88 {
    padding-top: 100px !important; /* Mobile: Adjust for fixed header */
    font-size: 16px; /* Increase base font size for readability */
    line-height: 1.6;
  }

  .page-index-review-tot88__container {
    padding: 30px 15px;
  }

  .page-index-review-tot88__hero-banner {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .page-index-review-tot88__hero-content {
    padding: 0 15px;
  }

  .page-index-review-tot88__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-index-review-tot88__subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-index-review-tot88__cta-button {
    padding: 12px 25px;
    font-size: 18px;
  }

  .page-index-review-tot88__section-title {
    font-size: 28px;
    margin-bottom: 30px;
    padding-top: 30px;
  }

  .page-index-review-tot88__section-description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .page-index-review-tot88__dark-bg {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .page-index-review-tot88__dark-bg p {
    font-size: 15px;
  }

  .page-index-review-tot88__btn-primary {
    padding: 12px 25px;
    font-size: 16px;
  }

  .page-index-review-tot88__review-grid,
  .page-index-review-tot88__game-features-grid,
  .page-index-review-tot88__promo-grid {
    grid-template-columns: 1fr; /* Single column layout for mobile */
    gap: 20px;
  }

  .page-index-review-tot88__review-card,
  .page-index-review-tot88__feature-card,
  .page-index-review-tot88__promo-card {
    padding: 20px;
  }

  .page-index-review-tot88__card-title,
  .page-index-review-tot88__feature-title,
  .page-index-review-tot88__promo-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .page-index-review-tot88__card-image,
  .page-index-review-tot88__feature-image,
  .page-index-review-tot88__promo-image {
    height: 150px; /* Adjust image height for mobile */
  }

  .page-index-review-tot88__review-card p,
  .page-index-review-tot88__feature-card p,
  .page-index-review-tot88__promo-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .page-index-review-tot88__faq-list {
    margin-top: 30px;
  }

  .page-index-review-tot88__faq-question {
    padding: 15px;
  }

  .page-index-review-tot88__faq-question h3 {
    font-size: 16px;
  }

  .page-index-review-tot88__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

  .page-index-review-tot88__faq-item.active .page-index-review-tot88__faq-answer {
    padding: 15px !important;
  }

  .page-index-review-tot88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}