:root {
  --primary-color: #0A192F;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f1f3f5;
  --border-color: #e0e0e0;
}

/* Fixed navigation bar spacing */
.page-index-review-fa88__hero-header {
  padding-top: 120px; /* Desktop: Adjust based on actual header height */
}

.page-index-review-fa88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

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

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

.page-index-review-fa88__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-index-review-fa88__text-light {
  color: var(--text-light);
}

.page-index-review-fa88__highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-index-review-fa88__section-heading {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.page-index-review-fa88__dark-bg .page-index-review-fa88__section-heading {
  color: var(--text-light);
}

.page-index-review-fa88__text-center {
  text-align: center;
  margin-bottom: 20px;
}

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

.page-index-review-fa88__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-review-fa88__btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-index-review-fa88__btn-secondary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

/* Hero Header Section */
.page-index-review-fa88__hero-header {
  padding: 80px 0;
  text-align: center;
}

.page-index-review-fa88__title {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-review-fa88__subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Introduction Section */
.page-index-review-fa88__introduction {
  padding: 60px 0;
}

.page-index-review-fa88__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-index-review-fa88__image-box {
  flex: 1;
  min-width: 300px;
}

.page-index-review-fa88__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

.page-index-review-fa88__text-block {
  flex: 2;
  font-size: 17px;
}

.page-index-review-fa88__text-block p {
  margin-bottom: 15px;
}

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

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

/* Key Features Section */
.page-index-review-fa88__key-features {
  padding: 60px 0;
}

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

.page-index-review-fa88__feature-card {
  background-color: #1a2c42; /* Slightly lighter dark background for cards */
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
}

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

.page-index-review-fa88__feature-icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Slight brightness to make icons pop on dark bg, not changing color */
  max-width: 100%; /* Responsive image */
}

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

.page-index-review-fa88__feature-description {
  font-size: 16px;
  line-height: 1.7;
}

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

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

/* Game Library Section */
.page-index-review-fa88__game-library {
  padding: 60px 0;
}

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

.page-index-review-fa88__game-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-fa88__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.page-index-review-fa88__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
  max-width: 100%; /* Responsive image */
}

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

.page-index-review-fa88__game-description {
  font-size: 16px;
  color: var(--text-dark);
}

/* Promotions Section */
.page-index-review-fa88__promotions {
  padding: 60px 0;
}

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

.page-index-review-fa88__promo-card {
  background-color: #1a2c42; /* Slightly lighter dark background */
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
}

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

.page-index-review-fa88__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
  max-width: 100%; /* Responsive image */
}

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

.page-index-review-fa88__promo-description {
  font-size: 16px;
  color: var(--text-light);
}

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

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

/* FAQ Section */
.page-index-review-fa88__faq-section {
  padding: 60px 0;
}

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

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

.page-index-review-fa88__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-fa88__faq-item.active .page-index-review-fa88__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

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

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

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

.page-index-review-fa88__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-dark);
}

.page-index-review-fa88__faq-question h3 .page-index-review-fa88__highlight {
  color: var(--primary-color); /* Ensure contrast on white background */
}

.page-index-review-fa88__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-fa88__faq-item.active .page-index-review-fa88__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg); /* Change + to X */
}

.page-index-review-fa88__faq-answer p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

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

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

/* Conclusion Section */
.page-index-review-fa88__conclusion {
  padding: 60px 0;
}

.page-index-review-fa88__conclusion p {
  font-size: 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

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

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

/* Copyright Info */
.page-index-review-fa88__copyright-info {
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-review-fa88__title {
    font-size: 40px;
  }

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

  .page-index-review-fa88__section-heading {
    font-size: 28px;
  }

  .page-index-review-fa88__content-wrapper {
    flex-direction: column;
  }

  .page-index-review-fa88__image-box {
    min-width: unset;
    width: 100%;
  }

  .page-index-review-fa88__text-block {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-index-review-fa88__hero-header {
    padding-top: 100px !important; /* Mobile: Adjust based on actual header height */
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 40px;
  }

  .page-index-review-fa88__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-index-review-fa88__subtitle {
    font-size: 16px;
  }

  .page-index-review-fa88__section-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }

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

  .page-index-review-fa88__introduction,
  .page-index-review-fa88__key-features,
  .page-index-review-fa88__game-library,
  .page-index-review-fa88__promotions,
  .page-index-review-fa88__faq-section,
  .page-index-review-fa88__conclusion {
    padding: 40px 0;
  }

  .page-index-review-fa88__features-grid,
  .page-index-review-fa88__game-grid,
  .page-index-review-fa88__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-review-fa88__feature-card,
  .page-index-review-fa88__game-card,
  .page-index-review-fa88__promo-card {
    padding: 20px;
  }

  .page-index-review-fa88__feature-title,
  .page-index-review-fa88__game-title,
  .page-index-review-fa88__promo-title {
    font-size: 20px;
  }

  .page-index-review-fa88__feature-description,
  .page-index-review-fa88__game-description,
  .page-index-review-fa88__promo-description {
    font-size: 15px;
  }

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

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

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

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

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

  .page-index-review-fa88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-index-review-fa88__image-box,
  .page-index-review-fa88__game-image,
  .page-index-review-fa88__promo-image,
  .page-index-review-fa88__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}