.page-index-review-fa88 {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #0A192F;
  line-height: 1.6;
}

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

.page-index-review-fa88__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-review-fa88__section:last-of-type {
  border-bottom: none;
}

.page-index-review-fa88__section-title {
  font-size: 38px;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-index-review-fa88__sub-title {
  font-size: 28px;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

/* 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: 80px 20px;
  background: linear-gradient(135deg, #0A192F 0%, #1A304A 100%);
  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;
  z-index: 1;
}

.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: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.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;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.page-index-review-fa88__hero-description {
  font-size: 20px;
  color: #D3D3D3;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.5;
}

.page-index-review-fa88__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #0A192F;
  text-decoration: none;
  border-radius: 8px;
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-index-review-fa88__cta-button:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

/* Game Grid */
.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-color: #1A304A;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-review-fa88__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-index-review-fa88__game-card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-review-fa88__game-card-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-index-review-fa88__game-card p {
  font-size: 16px;
  color: #D3D3D3;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-review-fa88__button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FFD700;
  color: #0A192F;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-review-fa88__button:hover {
  background-color: #FFA500;
  transform: translateY(-2px);
}

/* Promotions */
.page-index-review-fa88__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-index-review-fa88__promo-list li {
  background-color: #1A304A;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 18px;
  color: #D3D3D3;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

.page-index-review-fa88__promo-highlight {
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
}

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

.page-index-review-fa88__button--secondary {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-index-review-fa88__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

/* UX Section */
.page-index-review-fa88__grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-index-review-fa88__text-block {
  background-color: #1A304A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-review-fa88__text-block img {
  max-width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Security */
.page-index-review-fa88__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-index-review-fa88__security-list li {
  background-color: #1A304A;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 18px;
  color: #D3D3D3;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

.page-index-review-fa88__security-highlight {
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
}

.page-index-review-fa88__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Payments */
.page-index-review-fa88__payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-fa88__payment-item {
  background-color: #1A304A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-review-fa88__payment-item img {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Support */
.page-index-review-fa88__support-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-index-review-fa88__support-list li {
  background-color: #1A304A;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 18px;
  color: #D3D3D3;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

.page-index-review-fa88__support-highlight {
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
}

/* Pros & Cons */
.page-index-review-fa88__pros-cons .page-index-review-fa88__grid-2-col > div {
  background-color: #1A304A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-review-fa88__sub-title--pros {
  color: #28a745; /* Green for pros */
  text-align: center;
}

.page-index-review-fa88__sub-title--cons {
  color: #dc3545; /* Red for cons */
  text-align: center;
}

.page-index-review-fa88__list-bullet {
  list-style: none;
  padding: 0;
}

.page-index-review-fa88__list-bullet li {
  margin-bottom: 10px;
  font-size: 17px;
  color: #D3D3D3;
  position: relative;
  padding-left: 25px;
}

.page-index-review-fa88__list-bullet li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index-review-fa88__cons .page-index-review-fa88__list-bullet li::before {
  content: '−';
  color: #dc3545;
}

.page-index-review-fa88__list-highlight {
  font-weight: bold;
  color: #FFD700;
}

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

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1A304A;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #0A192F;
  color: #FFD700;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-question:hover {
  background: #1A304A;
}

.faq-question h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #FFD700;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFA500;
}

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

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
  border-top: 1px solid rgba(255, 215, 0, 0.05);
}

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

.faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.faq-answer a:hover {
  color: #FFA500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-fa88__hero-title {
    font-size: 42px;
  }
  .page-index-review-fa88__hero-description {
    font-size: 18px;
  }
  .page-index-review-fa88__section-title {
    font-size: 32px;
  }
  .page-index-review-fa88__sub-title {
    font-size: 24px;
  }
  .page-index-review-fa88__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-index-review-fa88__grid-2-col {
    grid-template-columns: 1fr;
  }
  .page-index-review-fa88__payment-grid {
    grid-template-columns: 1fr;
  }
  .page-index-review-fa88__button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .page-index-review-fa88__hero-section {
    padding: 60px 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: 28px;
    margin-bottom: 30px;
  }
  .page-index-review-fa88__sub-title {
    font-size: 22px;
  }
  .page-index-review-fa88__text-content {
    font-size: 15px;
  }
  .page-index-review-fa88__game-card {
    padding: 20px;
  }
  .page-index-review-fa88__game-card-title {
    font-size: 20px;
  }
  .page-index-review-fa88__promo-list li,
  .page-index-review-fa88__security-list li,
  .page-index-review-fa88__support-list li {
    font-size: 16px;
    padding: 15px 20px;
  }
  .page-index-review-fa88__button-group {
    flex-direction: column;
    display: flex;
    align-items: center;
  }
  .page-index-review-fa88__button--secondary {
    width: 100%;
    max-width: 250px;
  }
  .faq-question h3 {
    font-size: 18px;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-index-review-fa88__hero-title {
    font-size: 28px;
  }
  .page-index-review-fa88__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-index-review-fa88__section-title {
    font-size: 24px;
  }
  .page-index-review-fa88__game-grid {
    grid-template-columns: 1fr;
  }
  .page-index-review-fa88__text-block img,
  .page-index-review-fa88__payment-item img {
    height: 180px;
  }
  .page-index-review-fa88__button {
    width: 100%;
    max-width: 200px;
  }
  .page-index-review-fa88__button-group .page-index-review-fa88__cta-button {
    width: 100%;
    max-width: 300px;
  }
  .page-index-review-fa88__button--secondary {
    width: 100%;
    max-width: 300px;
  }
}