:root {
  --primary-color: #007BFF;
  --secondary-color: #28A745;
  --accent-color: #FFC107;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --light-bg-1: #f1f3f5;
  --light-bg-2: #ffffff;
  --dark-bg-1: #0d0d0d; /* Assuming shared.css defines this as a dark background */
}

/* Ensure body background from shared.css is handled */
.page-index-review-tot88 {
  color: var(--text-color-light); /* Default to light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

/* Fixed navigation bar spacing */
.page-index-review-tot88__hero-intro-section {
  padding-top: 180px; /* Desktop: Adjust based on actual fixed header height */
}

/* General Section Styling */
.page-index-review-tot88__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-color-light); /* Default for dark sections */
}

.page-index-review-tot88__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--text-color-light); /* Default for dark sections */
}

/* CTA Button Styles */
.page-index-review-tot88__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-index-review-tot88__cta-primary {
  background: var(--primary-color);
  color: var(--text-color-light);
}

.page-index-review-tot88__cta-primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__cta-secondary {
  background: var(--secondary-color);
  color: var(--text-color-light);
}

.page-index-review-tot88__cta-secondary:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__cta-large {
  padding: 18px 40px;
  font-size: 20px;
}

/* Hero Intro Section */
.page-index-review-tot88__hero-intro-section {
  background: linear-gradient(135deg, var(--dark-bg-1), rgba(0, 0, 0, 0.8));
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-index-review-tot88__main-title {
  font-size: 48px;
  font-weight: bold;
  color: var(--text-color-light);
  margin-bottom: 20px;
}

.page-index-review-tot88__intro-text {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index-review-tot88__intro-text a {
  color: var(--accent-color);
  text-decoration: underline;
}

.page-index-review-tot88__intro-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-tot88__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Review Section */
.page-index-review-tot88__review-section {
  padding: 80px 20px;
  background: var(--light-bg-1);
  color: var(--text-color-dark);
}

.page-index-review-tot88__review-section .page-index-review-tot88__section-title,
.page-index-review-tot88__review-section .page-index-review-tot88__section-description {
  color: var(--text-color-dark);
}

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

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

.page-index-review-tot88__review-card {
  background: var(--light-bg-2);
  border-radius: 12px;
  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 20px rgba(0, 0, 0, 0.15);
}

.page-index-review-tot88__card-icon {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-review-tot88__card-text {
  font-size: 16px;
  color: var(--text-color-dark);
  line-height: 1.7;
}

.page-index-review-tot88__card-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-index-review-tot88__card-text a:hover {
  text-decoration: underline;
}

.page-index-review-tot88__cta-full-width {
  text-align: center;
  margin-top: 40px;
}

.page-index-review-tot88__cta-full-width p {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--text-color-dark);
}

.page-index-review-tot88__cta-full-width p a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-index-review-tot88__cta-full-width p a:hover {
  text-decoration: underline;
}

/* Guide Section */
.page-index-review-tot88__guide-section {
  padding: 80px 20px;
  background: var(--dark-bg-1);
  color: var(--text-color-light);
}

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

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

.page-index-review-tot88__step-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-tot88__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-tot88__step-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.page-index-review-tot88__step-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.page-index-review-tot88__step-text a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-index-review-tot88__step-text a:hover {
  text-decoration: underline;
}

/* Expert Advice Section */
.page-index-review-tot88__expert-advice-section {
  padding: 80px 20px;
  background: var(--light-bg-1);
  color: var(--text-color-dark);
}

.page-index-review-tot88__expert-advice-section .page-index-review-tot88__section-title {
  color: var(--text-color-dark);
}

.page-index-review-tot88__expert-advice-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-index-review-tot88__advice-card {
  background: var(--light-bg-2);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: left;
}

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

.page-index-review-tot88__advice-text {
  font-size: 15px;
  color: var(--text-color-dark);
  line-height: 1.6;
}

.page-index-review-tot88__advice-text a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-index-review-tot88__advice-text a:hover {
  text-decoration: underline;
}

/* Conclusion Section */
.page-index-review-tot88__conclusion-section {
  padding: 80px 20px;
  background: var(--dark-bg-1);
  color: var(--text-color-light);
  text-align: center;
}

.page-index-review-tot88__conclusion-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-index-review-tot88__conclusion-text {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-index-review-tot88__conclusion-text a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
}

.page-index-review-tot88__conclusion-text a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-index-review-tot88__faq-section {
  padding: 80px 20px;
  background: var(--light-bg-1);
  color: var(--text-color-dark);
}

.page-index-review-tot88__faq-section .page-index-review-tot88__section-title {
  color: var(--text-color-dark);
}

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

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

.page-index-review-tot88__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.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;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: var(--text-color-dark);
}

.page-index-review-tot88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--light-bg-2);
  border: 1px solid #e0e0e0;
  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: #f5f5f5;
  border-color: #d0d0d0;
}

.page-index-review-tot88__faq-question:active {
  background: #eeeeee;
}

.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;
  color: var(--text-color-dark);
}

.page-index-review-tot88__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  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(--primary-color);
  transform: rotate(45deg);
}

/* News Section */
.page-index-review-tot88__news-section {
  padding: 80px 20px;
  background: var(--dark-bg-1);
  color: var(--text-color-light);
}

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

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

.page-index-review-tot88__news-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-review-tot88__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-index-review-tot88__news-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--accent-color);
  padding: 20px 20px 10px 20px;
  flex-grow: 1;
}

.page-index-review-tot88__news-title a {
  color: var(--accent-color);
  text-decoration: none;
}

.page-index-review-tot88__news-title a:hover {
  text-decoration: underline;
}

.page-index-review-tot88__news-excerpt {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 20px 15px 20px;
}

.page-index-review-tot88__news-excerpt a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-index-review-tot88__news-excerpt a:hover {
  text-decoration: underline;
}

.page-index-review-tot88__read-more {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  margin: 0 20px 20px 20px;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.page-index-review-tot88__read-more:hover {
  background: #0056b3;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-tot88__main-title {
    font-size: 42px;
  }

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

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

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

@media (max-width: 768px) {
  .page-index-review-tot88 {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Override fixed header padding for mobile */
  .page-index-review-tot88__hero-intro-section {
    padding-top: 160px !important; /* Mobile: Adjust based on actual mobile fixed header height */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-review-tot88__hero-intro-container,
  .page-index-review-tot88__review-container,
  .page-index-review-tot88__guide-container,
  .page-index-review-tot88__expert-advice-container,
  .page-index-review-tot88__conclusion-container,
  .page-index-review-tot88__faq-container,
  .page-index-review-tot88__news-container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

  .page-index-review-tot88__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-review-tot88__cta-button {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-index-review-tot88__cta-large {
    padding: 15px 30px;
    font-size: 18px;
  }

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

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

  .page-index-review-tot88__review-section,
  .page-index-review-tot88__guide-section,
  .page-index-review-tot88__expert-advice-section,
  .page-index-review-tot88__conclusion-section,
  .page-index-review-tot88__faq-section,
  .page-index-review-tot88__news-section {
    padding: 50px 0;
  }

  .page-index-review-tot88__review-grid,
  .page-index-review-tot88__guide-steps,
  .page-index-review-tot88__advice-grid,
  .page-index-review-tot88__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-review-tot88__card-icon {
    width: 100px;
  }

  .page-index-review-tot88__card-title {
    font-size: 20px;
  }

  .page-index-review-tot88__card-text {
    font-size: 15px;
  }

  .page-index-review-tot88__news-image {
    height: 180px;
  }

  .page-index-review-tot88__news-title {
    font-size: 18px;
    padding: 15px 15px 8px 15px;
  }

  .page-index-review-tot88__news-excerpt {
    font-size: 14px;
    padding: 0 15px 12px 15px;
  }

  .page-index-review-tot88__read-more {
    margin: 0 15px 15px 15px;
  }

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

  .page-index-review-tot88__faq-question h3 {
    font-size: 16px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }

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

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

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

  /* All images must be responsive */
  .page-index-review-tot88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}