.page-index-review-tot88 {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A1A1A; /* Dark background */
  line-height: 1.6;
}

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

.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;
  background-color: #1A1A1A; /* Ensure dark background */
}

.page-index-review-tot88__hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

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

.page-index-review-tot88__main-heading {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main heading */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index-review-tot88__intro-text {
  font-size: 1.2em;
  color: #F0F0F0; /* Lighter text for intro */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-tot88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold button */
  color: #1A1A1A; /* Dark text on gold button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-review-tot88__cta-button:hover {
  background: #E6B800; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-review-tot88__section:last-of-type {
  border-bottom: none;
}

.page-index-review-tot88__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-index-review-tot88__paragraph {
  font-size: 1.05em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-index-review-tot88__game-item {
  background-color: #2A2A2A; /* Slightly lighter dark background for cards */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-index-review-tot88__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-review-tot88__game-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for game titles */
  margin-bottom: 10px;
}

.page-index-review-tot88__game-description {
  font-size: 0.95em;
  color: #CCCCCC; /* Lighter text for descriptions */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-review-tot88__game-link {
  display: inline-block;
  padding: 10px 20px;
  background: #FFD700; /* Gold link button */
  color: #1A1A1A; /* Dark text on gold */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-review-tot88__game-link:hover {
  background: #E6B800;
}

.page-index-review-tot88__promo-list {
  list-style-type: disc;
  margin-left: 20px;
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-index-review-tot88__promo-list li {
  margin-bottom: 10px;
}

.page-index-review-tot88__promo-list li strong {
  color: #FFD700;
}

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

.page-index-review-tot88__info-item {
  background-color: #2A2A2A;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-index-review-tot88__info-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* Ensure no color filters */
}

.page-index-review-tot88__info-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-review-tot88__info-description {
  font-size: 0.95em;
  color: #CCCCCC;
}

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

/* FAQ default state - Answer hidden */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background-color: #2A2A2A; /* Darker background for answer */
  border-radius: 0 0 5px 5px;
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px;
  background-color: #2A2A2A;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Question style */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #3A3A3A; /* Slightly lighter dark for question */
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  margin-bottom: 10px;
}

.faq-question:hover {
  background-color: #4A4A4A;
  border-color: #FFD700;
}

.faq-question h3 {
  color: #FFD700; /* Gold for FAQ questions */
  font-size: 1.15em;
  margin: 0;
}

/* Toggle icon */
.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700; /* Gold for toggle icon */
  transition: transform 0.3s ease;
}

.faq-answer p {
  color: #E0E0E0;
  margin: 0;
  font-size: 1em;
}

.page-index-review-tot88__cta-button--large {
  font-size: 1.3em;
  padding: 18px 50px;
  margin-top: 40px;
}

/* Responsive design */
@media (max-width: 1024px) {
  .page-index-review-tot88__main-heading {
    font-size: 2.8em;
  }
  .page-index-review-tot88__section-title {
    font-size: 2.2em;
  }
  .page-index-review-tot88__game-image {
    height: 180px;
  }
  .page-index-review-tot88__info-image {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .page-index-review-tot88__hero-banner {
    padding: 40px 15px;
  }
  .page-index-review-tot88__main-heading {
    font-size: 2.2em;
  }
  .page-index-review-tot88__intro-text {
    font-size: 1em;
  }
  .page-index-review-tot88__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index-review-tot88__section {
    padding: 40px 0;
  }
  .page-index-review-tot88__section-title {
    font-size: 1.8em;
  }
  .page-index-review-tot88__game-grid, .page-index-review-tot88__info-grid {
    grid-template-columns: 1fr;
  }
  .page-index-review-tot88__game-image {
    height: 220px;
  }
  .page-index-review-tot88__info-item {
    padding: 20px;
  }
  .faq-question {
    flex-direction: row;
    align-items: center;
    padding: 12px;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .page-index-review-tot88__cta-button--large {
    font-size: 1.1em;
    padding: 15px 40px;
  }
}

@media (max-width: 480px) {
  .page-index-review-tot88__main-heading {
    font-size: 1.8em;
  }
  .page-index-review-tot88__section-title {
    font-size: 1.5em;
  }
  .page-index-review-tot88__game-item, .page-index-review-tot88__info-item {
    padding: 15px;
  }
  .page-index-review-tot88__game-image {
    height: 180px;
  }
  .page-index-review-tot88__info-image {
    width: 80px;
    height: 80px;
  }
}