.page-index-review-tot88 {
  color: #ffffff; /* Default text color for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
}

.page-index-review-tot88__hero-banner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust for fixed header */
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); /* Using brand colors */
  color: #ffffff;
  box-sizing: border-box;
}

.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;
  gap: 30px;
}

.page-index-review-tot88__hero-image {
  width: 100%;
  max-width: 800px; /* Constrain image width for better composition */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-index-review-tot88__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-index-review-tot88__main-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-index-review-tot88__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-index-review-tot88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-index-review-tot88__cta-button:hover {
  background: #218838; /* Darker green */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__section {
  padding: 60px 20px;
  background: var(--dark-bg-1); /* Consistent with body background */
  color: #ffffff; /* Light text for dark background */
  box-sizing: border-box;
}

.page-index-review-tot88__introduction {
  padding-top: 120px; /* Adjust for fixed header on first content section */
}

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

.page-index-review-tot88__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-review-tot88__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.page-index-review-tot88__detailed-review .page-index-review-tot88__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-index-review-tot88__review-item {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark bg */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

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

.page-index-review-tot88__review-item p {
  font-size: 17px;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-index-review-tot88__review-item ul {
  list-style-type: disc;
  margin-left: 25px;
  padding: 0;
  color: #e0e0e0;
}

.page-index-review-tot88__review-item li {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.6;
}

.page-index-review-tot88__pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.page-index-review-tot88__card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-index-review-tot88__card-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.page-index-review-tot88__card--pros .page-index-review-tot88__card-title {
  color: var(--secondary-color);
}

.page-index-review-tot88__card--cons .page-index-review-tot88__card-title {
  color: var(--primary-color);
}

.page-index-review-tot88__list {
  list-style-type: '✅  '; /* Custom bullet for pros */
  padding-left: 20px;
  margin: 0;
}

.page-index-review-tot88__card--cons .page-index-review-tot88__list {
  list-style-type: '❌  '; /* Custom bullet for cons */
}

.page-index-review-tot88__list li {
  margin-bottom: 10px;
  font-size: 17px;
  color: #e0e0e0;
}

.page-index-review-tot88__registration-guide .page-index-review-tot88__container p {
  font-size: 17px;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-index-review-tot88__numbered-list {
  list-style-type: decimal;
  margin-left: 25px;
  padding: 0;
  color: #e0e0e0;
}

.page-index-review-tot88__numbered-list li {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.6;
}

.page-index-review-tot88__faq-section {
  background: var(--dark-bg-2); /* Slightly different dark background for contrast */
  padding: 60px 20px;
  color: #ffffff;
}

.page-index-review-tot88__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-index-review-tot88__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.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 25px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.05);
  color: #e0e0e0;
}

.page-index-review-tot88__faq-item.active .page-index-review-tot88__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-review-tot88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-index-review-tot88__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-index-review-tot88__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

.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: #ffffff;
}

.page-index-review-tot88__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-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: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.page-index-review-tot88__faq-item.active .page-index-review-tot88__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(45deg);
}

.page-index-review-tot88__conclusion .page-index-review-tot88__container p {
  font-size: 18px;
  color: #e0e0e0;
  text-align: center;
}

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

.page-index-review-tot88__cta-button--large {
  padding: 18px 50px;
  font-size: 22px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-tot88__main-title {
    font-size: 38px;
  }
  .page-index-review-tot88__section-title {
    font-size: 32px;
  }
  .page-index-review-tot88__item-title {
    font-size: 24px;
  }
  .page-index-review-tot88__review-item, .page-index-review-tot88__card {
    padding: 25px;
  }
  .page-index-review-tot88__cta-button {
    font-size: 18px;
    padding: 12px 30px;
  }
  .page-index-review-tot88__cta-button--large {
    font-size: 20px;
    padding: 15px 40px;
  }
}

@media (max-width: 768px) {
  .page-index-review-tot88__hero-banner {
    padding-top: 160px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-review-tot88__main-title {
    font-size: 32px;
  }
  .page-index-review-tot88__hero-description {
    font-size: 16px;
  }
  .page-index-review-tot88__cta-button {
    font-size: 16px;
    padding: 10px 25px;
  }
  .page-index-review-tot88__cta-button--large {
    font-size: 18px;
    padding: 12px 30px;
  }
  .page-index-review-tot88__section {
    padding: 40px 15px;
  }
  .page-index-review-tot88__introduction {
    padding-top: 100px !important; /* Mobile: Adjust for fixed header on first content section */
  }
  .page-index-review-tot88__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-index-review-tot88__item-title {
    font-size: 20px;
  }
  .page-index-review-tot88__review-item p, 
  .page-index-review-tot88__review-item li, 
  .page-index-review-tot88__list li, 
  .page-index-review-tot88__registration-guide .page-index-review-tot88__container p, 
  .page-index-review-tot88__numbered-list li, 
  .page-index-review-tot88__conclusion .page-index-review-tot88__container p {
    font-size: 15px;
  }
  .page-index-review-tot88__pros-cons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-review-tot88__card {
    padding: 20px;
  }
  .page-index-review-tot88__card-title {
    font-size: 24px;
  }
  .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: 28px;
    height: 28px;
    font-size: 24px;
  }
  .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;
  }

  /* Image responsiveness */
  .page-index-review-tot88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-index-review-tot88__section,
  .page-index-review-tot88__container,
  .page-index-review-tot88__hero-banner {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}