.page-index-review-fa88 {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-color-dark: #333333;
  --text-color-light: #FFFFFF;
  --background-light: #F8F8F8;
  --background-dark: #222222;
  --border-color: #E0E0E0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

.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: var(--background-light);
}

.page-index-review-fa88 .section-title {
  font-size: 36px;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-index-review-fa88 .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-review-fa88 .sub-title {
  font-size: 24px;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-review-fa88 .section-paragraph {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
}

/* 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(--primary-color), var(--secondary-color)); /* Ensure background doesn't affect image */
  color: var(--text-color-light);
  overflow: hidden;
}

.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;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-review-fa88 .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.page-index-review-fa88 .hero-image img:hover {
  transform: scale(1.03);
}

.page-index-review-fa88 .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  padding: 30px;
  border-radius: 12px;
  margin-top: -80px; /* Overlap with image slightly */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-index-review-fa88 .hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-color-light);
}

.page-index-review-fa88 .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-index-review-fa88 .cta-button:hover {
  background: var(--text-color-light);
  color: var(--secondary-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Feature List */
.page-index-review-fa88 .feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-index-review-fa88 .feature-item {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid var(--primary-color);
}

.page-index-review-fa88 .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-index-review-fa88 .feature-item strong {
  color: var(--secondary-color);
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

/* Quick Access Links */
.page-index-review-fa88 .section-quick-access {
  background-color: var(--background-dark);
  color: var(--text-color-light);
  text-align: center;
}

.page-index-review-fa88 .section-quick-access .section-title {
  color: var(--primary-color);
}

.page-index-review-fa88 .section-quick-access .section-paragraph {
  color: rgba(255, 255, 255, 0.8);
}

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

.page-index-review-fa88 .access-link {
  display: block;
  padding: 15px 25px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-fa88 .access-link:hover {
  background: var(--text-color-light);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Games Section */
.page-index-review-fa88 .section-games {
  background-color: var(--background-light);
}

.page-index-review-fa88 .game-carousel {
  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: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-index-review-fa88 .game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index-review-fa88 .game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-index-review-fa88 .game-title {
  font-size: 22px;
  color: var(--secondary-color);
  margin: 20px 15px 10px;
  font-weight: bold;
}

.page-index-review-fa88 .game-title a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-fa88 .game-title a:hover {
  color: var(--primary-color);
}

.page-index-review-fa88 .game-description {
  font-size: 15px;
  color: var(--text-color-dark);
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-review-fa88 .cta-small-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.page-index-review-fa88 .cta-small-button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Promotions Section */
.page-index-review-fa88 .section-promotions {
  background-color: #FDF9E6; /* Light creamy background */
}

.page-index-review-fa88 .promo-banner-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.page-index-review-fa88 .promo-card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 6px solid var(--secondary-color);
}

.page-index-review-fa88 .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.page-index-review-fa88 .promo-description {
  font-size: 16px;
  color: var(--text-color-dark);
  margin-bottom: 25px;
}

/* Security & Support Section */
.page-index-review-fa88 .section-security-support {
  background-color: #E6F3F8; /* Light blueish background */
}

.page-index-review-fa88 .security-support-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-index-review-fa88 .security-support-content .text-content {
  flex: 2;
  min-width: 300px;
}

.page-index-review-fa88 .security-support-content .image-wrapper {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-index-review-fa88 .security-support-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-index-review-fa88 .section-faq {
  background-color: var(--background-light);
}

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

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

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

.page-index-review-fa88 .faq-question:hover {
  background: #F5F5F5;
}

.page-index-review-fa88 .faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: var(--text-color-dark);
  font-weight: bold;
}

.page-index-review-fa88 .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-index-review-fa88 .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-index-review-fa88 .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: var(--text-color-dark);
}

.page-index-review-fa88 .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 25px;
}

.page-index-review-fa88 .faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.page-index-review-fa88 .faq-answer p a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-index-review-fa88 .faq-answer p a:hover {
  color: var(--primary-color);
}

/* Blog Section */
.page-index-review-fa88 .section-blog {
  background-color: #FDFDFD;
}

.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: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-review-fa88 .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index-review-fa88 .blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-review-fa88 .blog-card-title {
  font-size: 20px;
  color: var(--secondary-color);
  margin: 20px 20px 10px;
  font-weight: bold;
}

.page-index-review-fa88 .blog-card-title a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-fa88 .blog-card-title a:hover {
  color: var(--primary-color);
}

.page-index-review-fa88 .blog-excerpt {
  font-size: 15px;
  color: var(--text-color-dark);
  padding: 0 20px;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-index-review-fa88 .blog-date {
  font-size: 14px;
  color: #777;
  padding: 0 20px;
  margin-bottom: 15px;
}

.page-index-review-fa88 .read-more {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: all 0.3s ease;
}

.page-index-review-fa88 .read-more:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-fa88 .hero-title {
    font-size: 40px;
  }
  .page-index-review-fa88 .section-title {
    font-size: 30px;
  }
  .page-index-review-fa88 .hero-content {
    margin-top: -60px;
  }
}

@media (max-width: 768px) {
  .page-index-review-fa88 .hero-section {
    padding: 40px 15px;
  }
  .page-index-review-fa88 .hero-title {
    font-size: 32px;
  }
  .page-index-review-fa88 .hero-description {
    font-size: 16px;
  }
  .page-index-review-fa88 .cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page-index-review-fa88 section {
    padding: 40px 0;
  }
  .page-index-review-fa88 .section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-index-review-fa88 .sub-title {
    font-size: 20px;
  }
  .page-index-review-fa88 .feature-list, .page-index-review-fa88 .link-grid, .page-index-review-fa88 .game-carousel, .page-index-review-fa88 .promo-grid, .page-index-review-fa88 .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-review-fa88 .game-card, .page-index-review-fa88 .promo-card, .page-index-review-fa88 .blog-card {
    margin: 0 auto;
    max-width: 400px;
  }
  .page-index-review-fa88 .security-support-content {
    flex-direction: column;
  }
  .page-index-review-fa88 .hero-content {
    margin-top: -40px;
    padding: 20px;
  }
  .page-index-review-fa88 .faq-question {
    padding: 15px 20px;
  }
  .page-index-review-fa88 .faq-question h3 {
    font-size: 16px;
  }
  .page-index-review-fa88 .faq-answer {
    padding: 0 20px;
  }
  .page-index-review-fa88 .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-review-fa88 .hero-title {
    font-size: 28px;
  }
  .page-index-review-fa88 .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-index-review-fa88 .section-title {
    font-size: 22px;
  }
  .page-index-review-fa88 .hero-content {
    margin-top: -20px;
  }
}