.page-index-review-go88 {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Default text color for dark body background */
  line-height: 1.6;
}

.page-index-review-go88__hero-alt-section {
  background: linear-gradient(135deg, var(--primary-color), #000000);
  padding: 180px 20px 80px; /* Adjusted padding-top for fixed header */
  text-align: center;
  color: #ffffff;
}

@media (max-width: 768px) {
  .page-index-review-go88__hero-alt-section {
    padding: 140px 15px 60px; /* Adjusted padding-top for mobile fixed header */
  }
}

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

.page-index-review-go88__hero-alt-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color); /* Luxury gold for title */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .page-index-review-go88__hero-alt-title {
    font-size: 30px;
  }
}

.page-index-review-go88__hero-alt-description {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #f0f0f0;
}

@media (max-width: 768px) {
  .page-index-review-go88__hero-alt-description {
    font-size: 16px;
  }
}

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

.page-index-review-go88__hero-alt-cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-go88__btn-primary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-index-review-go88__btn-primary:hover {
  background: #ffc107;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-go88__btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-index-review-go88__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .page-index-review-go88__hero-alt-cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
}

/* Review Content Section */
.page-index-review-go88__review-content-section {
  padding: 60px 20px;
  background: #f1f3f5; /* Light background for review content */
  color: #333333; /* Dark text for light background */
}

.page-index-review-go88__review-content-container {
  max-width: 1100px;
  margin: 0 auto;
}

.page-index-review-go88__review-content-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

@media (max-width: 768px) {
  .page-index-review-go88__review-content-card {
    padding: 25px;
  }
}

.page-index-review-go88__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .page-index-review-go88__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

.page-index-review-go88__sub-section-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 35px;
  margin-bottom: 15px;
  border-left: 5px solid var(--secondary-color);
  padding-left: 15px;
}

@media (max-width: 768px) {
  .page-index-review-go88__sub-section-title {
    font-size: 20px;
    margin-top: 25px;
  }
}

.page-index-review-go88__review-content-card p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333333;
}

/* Games Showcase Section */
.page-index-review-go88__games-showcase-section {
  padding: 60px 20px;
  background: var(--primary-color);
  color: #ffffff;
  text-align: center;
}

.page-index-review-go88__games-showcase-container {
  max-width: 1100px;
  margin: 0 auto;
}

.page-index-review-go88__section-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #f0f0f0;
}

@media (max-width: 768px) {
  .page-index-review-go88__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

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

.page-index-review-go88__game-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-review-go88__game-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.page-index-review-go88__game-image {
  width: 100%;
  max-width: 400px; /* Ensure images are large, not small icons */
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

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

.page-index-review-go88__game-description {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

/* Promotions Section */
.page-index-review-go88__promotions-section {
  padding: 60px 20px;
  background: #f1f3f5; /* Light background */
  color: #333333; /* Dark text */
  text-align: center;
}

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

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

.page-index-review-go88__promo-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-review-go88__promo-item:hover {
  transform: translateY(-5px);
}

.page-index-review-go88__promo-icon {
  width: 100%;
  max-width: 250px; /* Ensure images are large, not small icons */
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-index-review-go88__promo-description {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
}

.page-index-review-go88__view-all-promos {
  margin-top: 20px;
}

/* Registration Guide Section */
.page-index-review-go88__registration-guide-section {
  padding: 60px 20px;
  background: var(--primary-color);
  color: #ffffff;
  text-align: center;
}

.page-index-review-go88__registration-guide-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-index-review-go88__registration-steps {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-index-review-go88__registration-steps li {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #f0f0f0;
}

.page-index-review-go88__registration-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--secondary-color);
  color: var(--primary-color);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.page-index-review-go88__register-cta {
  padding: 15px 40px;
  font-size: 18px;
}

/* FAQ Section */
.page-index-review-go88__faq-section {
  padding: 60px 20px;
  background: #f1f3f5; /* Light background */
  color: #333333; /* Dark text */
}

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

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

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

.page-index-review-go88__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 20px;
  opacity: 0;
}

.page-index-review-go88__faq-item.active .page-index-review-go88__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to contain content */
  padding: 20px !important;
  opacity: 1;
  background: #e9ecef;
  border-radius: 0 0 8px 8px;
}

.page-index-review-go88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--primary-color);
}

.page-index-review-go88__faq-item.active .page-index-review-go88__faq-question {
  border-radius: 8px 8px 0 0;
}

.page-index-review-go88__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

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

.page-index-review-go88__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: inherit;
}

@media (max-width: 768px) {
  .page-index-review-go88__faq-question h3 {
    font-size: 16px;
  }
}

.page-index-review-go88__faq-toggle {
  font-size: 26px;
  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: 30px;
  height: 30px;
}

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

@media (max-width: 768px) {
  .page-index-review-go88__faq-question {
    padding: 15px;
  }
  
  .page-index-review-go88__faq-toggle {
    width: 26px;
    height: 26px;
    font-size: 22px;
  }
  
  .page-index-review-go88__faq-answer {
    padding: 0 15px;
  }
  
  .page-index-review-go88__faq-item.active .page-index-review-go88__faq-answer {
    padding: 15px !important;
  }
}