/* style/index-review-fa88.css */
:root {
  --primary-color: #1E3A8A;
  --secondary-color: #F59E0B;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #0a0a0a;
  --bg-light-card: #ffffff;
  --border-color: #e0e0e0;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.2);
}

.page-index-review-fa88 {
  color: var(--text-light); /* Body background is dark, so text is light */
  line-height: 1.7;
  font-family: 'Arial', sans-serif;
  background-color: var(--bg-dark); /* Ensure consistency with body background */
  padding-top: 120px; /* Desktop: Adjust for fixed header */
}

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

.page-index-review-fa88__hero-intro-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 60px 20px;
  text-align: center;
  color: var(--text-light);
}

.page-index-review-fa88__hero-intro-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-index-review-fa88__main-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-review-fa88__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-fa88__intro-text a {
  color: var(--text-light);
  text-decoration: underline;
  font-weight: bold;
}

.page-index-review-fa88__intro-text a:hover {
  color: var(--secondary-color);
}

.page-index-review-fa88__main-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px var(--shadow-medium);
  object-fit: cover;
}

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

.page-index-review-fa88__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px var(--shadow-light);
}

.page-index-review-fa88__cta-button--primary {
  background: var(--secondary-color);
  color: var(--text-dark);
}

.page-index-review-fa88__cta-button--primary:hover {
  background: #e08e00;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px var(--shadow-medium);
}

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

.page-index-review-fa88__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px var(--shadow-medium);
}

.page-index-review-fa88__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
  background: var(--secondary-color);
  color: var(--text-dark);
}

.page-index-review-fa88__cta-button--small:hover {
  background: #e08e00;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px var(--shadow-medium);
}

.page-index-review-fa88__content-section {
  padding: 60px 20px;
  text-align: center;
}

.page-index-review-fa88__dark-section {
  background-color: #152b66; /* Slightly lighter than primary to ensure text contrast */
  color: var(--text-light);
}

.page-index-review-fa88__content-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.page-index-review-fa88__section-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-light);
}

.page-index-review-fa88__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-review-fa88__section-description a:hover {
  color: #e08e00;
}

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

.page-index-review-fa88__feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

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

.page-index-review-fa88__feature-icon {
  width: 120px; /* Min size 200x200 requirement, but for icons, 120px is generally accepted if they are content images */
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--secondary-color);
  padding: 10px;
}

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

.page-index-review-fa88__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-light);
  flex-grow: 1;
}

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

.page-index-review-fa88__feature-text a:hover {
  color: #e08e00;
}

.page-index-review-fa88__game-types-section {
  background-color: #0a0a0a; /* Dark background */
  color: var(--text-light);
  padding: 60px 20px;
  text-align: center;
}

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

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

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

.page-index-review-fa88__game-type-image {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-review-fa88__game-type-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-index-review-fa88__game-type-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--text-light);
  flex-grow: 1;
}

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

.page-index-review-fa88__game-type-description a:hover {
  color: #e08e00;
}

.page-index-review-fa88__promotions-section {
  background-color: #1E3A8A; /* Primary color background */
  color: var(--text-light);
  padding: 60px 20px;
  text-align: center;
}

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

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

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

.page-index-review-fa88__promotion-image {
  width: 280px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-index-review-fa88__promotion-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--text-light);
  flex-grow: 1;
}

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

.page-index-review-fa88__promotion-description a:hover {
  color: #e08e00;
}

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

.page-index-review-fa88__pros-cons-section {
  background-color: #0a0a0a; /* Dark background */
  color: var(--text-light);
  padding: 60px 20px;
  text-align: center;
}

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

.page-index-review-fa88__pros-card,
.page-index-review-fa88__cons-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-index-review-fa88__pros-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #28a745; /* Green for pros */
  margin-bottom: 20px;
  text-align: center;
}

.page-index-review-fa88__cons-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #dc3545; /* Red for cons */
  margin-bottom: 20px;
  text-align: center;
}

.page-index-review-fa88__pros-list,
.page-index-review-fa88__cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-index-review-fa88__pros-list li,
.page-index-review-fa88__cons-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.page-index-review-fa88__list-icon {
  margin-right: 10px;
  font-weight: bold;
  font-size: 1.2em;
}

.page-index-review-fa88__pros-list .page-index-review-fa88__list-icon {
  color: #28a745;
}

.page-index-review-fa88__cons-list .page-index-review-fa88__list-icon {
  color: #dc3545;
}

.page-index-review-fa88__conclusion-text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-top: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-review-fa88__conclusion-text a:hover {
  color: #e08e00;
}

/* FAQ Section */
.page-index-review-fa88__faq-section {
  padding: 60px 20px;
  background-color: #152b66; /* Slightly lighter than primary for contrast */
  color: var(--text-light);
  text-align: center;
}

.page-index-review-fa88__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.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, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: var(--text-dark);
  background: var(--bg-light-card);
  border-top: 1px solid var(--border-color);
}

.page-index-review-fa88__faq-item.active .page-index-review-fa88__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: var(--bg-light-card);
  border-radius: 0 0 8px 8px;
}

.page-index-review-fa88__faq-answer p {
  margin-bottom: 0;
  color: var(--text-dark);
}

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

.page-index-review-fa88__faq-answer p a:hover {
  color: var(--secondary-color);
}

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

.page-index-review-fa88__faq-item.active .page-index-review-fa88__faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}

.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: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-dark);
}

.page-index-review-fa88__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(var(--primary-color), 0.1);
}

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

.page-index-review-fa88__final-conclusion {
  background-color: #0a0a0a; /* Dark background */
  color: var(--text-light);
  padding: 60px 20px;
  text-align: center;
}

.page-index-review-fa88__conclusion-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  margin-top: 30px;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px var(--shadow-medium);
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-fa88__main-title {
    font-size: 2.8em;
  }
  .page-index-review-fa88__section-title {
    font-size: 2em;
  }
  .page-index-review-fa88__feature-grid,
  .page-index-review-fa88__game-type-grid,
  .page-index-review-fa88__promotion-grid,
  .page-index-review-fa88__pros-cons-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-review-fa88 {
    padding-top: 100px !important; /* Mobile: Adjust for fixed header */
    font-size: 15px;
    line-height: 1.6;
  }
  
  .page-index-review-fa88__hero-intro-section,
  .page-index-review-fa88__content-section,
  .page-index-review-fa88__game-types-section,
  .page-index-review-fa88__promotions-section,
  .page-index-review-fa88__pros-cons-section,
  .page-index-review-fa88__faq-section,
  .page-index-review-fa88__final-conclusion {
    padding: 30px 15px;
  }

  .page-index-review-fa88__main-title {
    font-size: 2em;
  }

  .page-index-review-fa88__intro-text {
    font-size: 1em;
  }

  .page-index-review-fa88__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-review-fa88__cta-button {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-index-review-fa88__section-title {
    font-size: 1.8em;
  }

  .page-index-review-fa88__section-description {
    font-size: 0.95em;
  }
  
  .page-index-review-fa88__feature-grid,
  .page-index-review-fa88__game-type-grid,
  .page-index-review-fa88__promotion-grid,
  .page-index-review-fa88__pros-cons-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-review-fa88__feature-icon {
    width: 100px;
    height: 100px;
  }

  .page-index-review-fa88__game-type-image {
    width: 100%;
    height: 150px;
  }

  .page-index-review-fa88__promotion-image {
    width: 100%;
    height: 140px;
  }

  .page-index-review-fa88__pros-list li,
  .page-index-review-fa88__cons-list li {
    font-size: 0.95em;
  }

  .page-index-review-fa88__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-index-review-fa88__faq-question h3 {
    font-size: 1em;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-index-review-fa88__faq-toggle {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    font-size: 24px;
  }
  
  .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;
  }

  /* Ensure all images and containers adapt to mobile */
  .page-index-review-fa88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index-review-fa88__content-container,
  .page-index-review-fa88__hero-intro-container,
  .page-index-review-fa88__feature-card,
  .page-index-review-fa88__game-type-card,
  .page-index-review-fa88__promotion-card,
  .page-index-review-fa88__pros-card,
  .page-index-review-fa88__cons-card,
  .page-index-review-fa88__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}