/* style/index-review-tot88.css */
:root {
  --primary-color: #007bff;
  --secondary-color: #ffc107;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark-body: #000;
  --bg-light-card: #ffffff;
  --border-color: #e0e0e0;
}

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

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

/* HERO-like Introduction Section */
.page-index-review-tot88__hero-intro-section {
  position: relative;
  width: 100%;
  padding: 60px 0;
  padding-top: 180px; /* Desktop: Adjust for fixed header */
  background: linear-gradient(135deg, #007bff, #0056b3); /* Darker gradient for intro */
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
}

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

.page-index-review-tot88__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

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

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

.page-index-review-tot88__hero-image {
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-index-review-tot88__image-fullwidth {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-index-review-tot88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.page-index-review-tot88__cta-button--primary {
  background: var(--secondary-color);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-index-review-tot88__cta-button--primary:hover {
  background: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

/* Review Section */
.page-index-review-tot88__review-section {
  padding: 60px 0;
  background-color: var(--bg-dark-body);
}

.page-index-review-tot88__review-card {
  background: var(--bg-light-card);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
  color: var(--text-dark);
}

.page-index-review-tot88__section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-review-tot88__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-review-tot88__sub-section-title {
  font-size: 1.6em;
  font-weight: bold;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
}

.page-index-review-tot88__review-card p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1em;
}

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

.page-index-review-tot88__review-card p a:hover {
  text-decoration: underline;
}

.page-index-review-tot88__content-block {
  margin-bottom: 30px;
}

.page-index-review-tot88__image-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-review-tot88__review-card ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-index-review-tot88__review-card li {
  margin-bottom: 8px;
  font-size: 1em;
}

.page-index-review-tot88__cta-button--secondary {
  background: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
  margin-top: 30px;
}

.page-index-review-tot88__cta-button--secondary:hover {
  background: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

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

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

.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;
  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: #222222;
  border-radius: 0 0 5px 5px;
  color: var(--text-light);
}

.page-index-review-tot88__faq-answer p {
  margin-bottom: 0;
}

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

.page-index-review-tot88__faq-answer p a:hover {
  text-decoration: underline;
}

.page-index-review-tot88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #1a1a1a;
  border: 1px solid #333333;
  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: #2a2a2a;
  border-color: #555555;
}

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

.page-index-review-tot88__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-light);
}

.page-index-review-tot88__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  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);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-review-tot88__main-title {
    font-size: 2.5em;
  }
  .page-index-review-tot88__subtitle {
    font-size: 1.1em;
  }
  .page-index-review-tot88__section-title {
    font-size: 1.8em;
  }
  .page-index-review-tot88__sub-section-title {
    font-size: 1.4em;
  }
  .page-index-review-tot88__review-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-index-review-tot88__hero-intro-section {
    padding-top: 140px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
  }
  .page-index-review-tot88__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-index-review-tot88__subtitle {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-index-review-tot88__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index-review-tot88__review-section,
  .page-index-review-tot88__faq-section {
    padding: 30px 0;
  }
  .page-index-review-tot88__review-card {
    padding: 20px;
  }
  .page-index-review-tot88__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-index-review-tot88__sub-section-title {
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-left: 10px;
  }
  .page-index-review-tot88__review-card p,
  .page-index-review-tot88__review-card li {
    font-size: 0.95em;
  }
  .page-index-review-tot88__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-index-review-tot88__faq-question h3 {
    font-size: 1em;
    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;
  }
  /* Mobile image adaptation */
  .page-index-review-tot88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-index-review-tot88__container,
  .page-index-review-tot88__hero-intro-section,
  .page-index-review-tot88__review-section,
  .page-index-review-tot88__faq-section,
  .page-index-review-tot88__review-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}