/* style/index-review-fa88.css */
:root {
  --page-primary-color: #002060; /* Royal Blue / Navy Blue */
  --page-secondary-color: #FFD700; /* Bright Gold / Amber */
  --page-text-dark: #333333;
  --page-text-light: #ffffff;
  --page-background-light: #f4f7f6;
  --page-background-dark: #001a4d;
  --page-border-color: #e0e0e0;
}

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

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

.page-index-review-fa88__section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-review-fa88__section:nth-child(even) {
  background-color: var(--page-background-light);
}

.page-index-review-fa88__section-title {
  font-size: 36px;
  color: var(--page-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-index-review-fa88__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
  color: #555;
}

.page-index-review-fa88__text-link {
  color: var(--page-primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-review-fa88__text-link:hover {
  color: var(--page-secondary-color);
  text-decoration: underline;
}

/* HERO Section */
.page-index-review-fa88__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--page-primary-color) 0%, #0a3a8a 100%);
  color: var(--page-text-light);
  margin-bottom: 30px;
  border-radius: 0 0 15px 15px;
}

.page-index-review-fa88__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-review-fa88__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-review-fa88__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-index-review-fa88__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--page-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-index-review-fa88__cta-button:hover {
  background: #ffc400;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Quick Access Section */
.page-index-review-fa88__quick-access {
  padding: 60px 0;
  background-color: var(--page-background-light);
}

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

.page-index-review-fa88__link-card {
  background: #ffffff;
  border: 1px solid var(--page-border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  text-decoration: none;
  color: var(--page-text-dark);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-review-fa88__link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border-color: var(--page-secondary-color);
}

.page-index-review-fa88__link-icon {
  width: 120px; /* Min size 200x200, but these are 'icons' for demonstration, will be replaced by actual images */
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* Ensure no color filters */
}

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

.page-index-review-fa88__link-description {
  font-size: 15px;
  color: #666;
}

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

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

.page-index-review-fa88__game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-index-review-fa88__game-card:hover {
  transform: translateY(-8px);
}

.page-index-review-fa88__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: none; /* Ensure no color filters */
}

.page-index-review-fa88__game-title {
  font-size: 24px;
  color: var(--page-primary-color);
  padding: 20px 25px 10px;
}

.page-index-review-fa88__game-description {
  font-size: 16px;
  color: #555;
  padding: 0 25px 25px;
  text-align: justify;
}

/* Promotions Section */
.page-index-review-fa88__promotions {
  background-color: var(--page-background-light);
  padding: 60px 0;
}

.page-index-review-fa88__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-index-review-fa88__promo-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-index-review-fa88__promo-title {
  font-size: 24px;
  color: var(--page-primary-color);
  margin-bottom: 10px;
}

.page-index-review-fa88__promo-description {
  font-size: 16px;
  color: #555;
}

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

/* Security & Support Section */
.page-index-review-fa88__security-support {
  padding: 60px 0;
}

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

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

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

.page-index-review-fa88__feature-icon {
  width: 120px; /* Min size 200x200, but these are 'icons' for demonstration, will be replaced by actual images */
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* Ensure no color filters */
}

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

.page-index-review-fa88__feature-description {
  font-size: 16px;
  color: #555;
}

/* FAQ Section */
.page-index-review-fa88__faq {
  background-color: var(--page-background-light);
  padding: 60px 0;
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-question h3 {
  font-size: 18px;
  color: var(--page-primary-color);
  margin: 0;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--page-primary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 25px;
  border-top: 1px solid var(--page-border-color);
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
}

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

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

.page-index-review-fa88__blog-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: var(--page-text-dark);
  transition: transform 0.3s ease;
}

.page-index-review-fa88__blog-card:hover {
  transform: translateY(-8px);
}

.page-index-review-fa88__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: none; /* Ensure no color filters */
}

.page-index-review-fa88__blog-title {
  font-size: 22px;
  color: var(--page-primary-color);
  padding: 20px 25px 10px;
}

.page-index-review-fa88__blog-summary {
  font-size: 16px;
  color: #555;
  padding: 0 25px;
  margin-bottom: 15px;
}

.page-index-review-fa88__blog-date {
  font-size: 14px;
  color: #888;
  padding: 0 25px 20px;
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-review-fa88__hero-title {
    font-size: 40px;
  }
  .page-index-review-fa88__section-title {
    font-size: 30px;
  }
  .page-index-review-fa88__game-grid, .page-index-review-fa88__feature-grid, .page-index-review-fa88__blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-index-review-fa88__link-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-review-fa88__hero-section {
    padding: 40px 15px;
  }
  .page-index-review-fa88__hero-image img {
    border-radius: 4px;
  }
  .page-index-review-fa88__hero-title {
    font-size: 32px;
  }
  .page-index-review-fa88__hero-description {
    font-size: 18px;
  }
  .page-index-review-fa88__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-index-review-fa88__section {
    padding: 40px 0;
  }
  .page-index-review-fa88__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-index-review-fa88__paragraph {
    font-size: 16px;
  }
  .page-index-review-fa88__link-icon, .page-index-review-fa88__feature-icon {
    width: 100px;
    height: 100px;
  }
  .page-index-review-fa88__link-title, .page-index-review-fa88__feature-title, .page-index-review-fa88__game-title, .page-index-review-fa88__promo-title, .page-index-review-fa88__blog-title {
    font-size: 20px;
  }
  .page-index-review-fa88__game-image {
    height: 200px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 17px;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-item.active .faq-answer {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-review-fa88__hero-title {
    font-size: 28px;
  }
  .page-index-review-fa88__hero-description {
    font-size: 16px;
  }
  .page-index-review-fa88__section-title {
    font-size: 22px;
  }
  .page-index-review-fa88__link-grid, .page-index-review-fa88__game-grid, .page-index-review-fa88__feature-grid, .page-index-review-fa88__blog-grid {
    grid-template-columns: 1fr;
  }
  .page-index-review-fa88__link-icon, .page-index-review-fa88__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-index-review-fa88__link-card, .page-index-review-fa88__feature-card {
    padding: 20px;
  }
  .page-index-review-fa88__game-card, .page-index-review-fa88__blog-card {
    margin-bottom: 20px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
}