.page-index-review-fabet {
  color: #ffffff; /* Default text color for dark background body */
  background-color: var(--dark-bg-1);
}

.page-index-review-fabet__page-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 10px; /* Adjust for fixed header */
}

/* Brand Review Content Section (Module 1.5) */
.page-index-review-fabet__review-content-section {
  padding: 40px 20px;
  background: #f1f3f5; /* Light background for review content */
  color: #333333; /* Dark text for light background */
  padding-top: 10px; /* Adjust for fixed header on first section */
}

.page-index-review-fabet__review-content-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-index-review-fabet__review-content-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.page-index-review-fabet__main-review-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  margin-bottom: 30px;
  object-fit: cover;
}

.page-index-review-fabet__section-heading {
  font-size: 28px;
  font-weight: bold;
  color: #CC0000;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-index-review-fabet__review-content-card h1 {
  font-size: 32px;
  font-weight: bold;
  color: #CC0000;
  margin-bottom: 24px;
  text-align: center;
}

.page-index-review-fabet__review-content-card h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  margin-top: 24px;
  margin-bottom: 12px;
}

.page-index-review-fabet__review-body {
  color: #333333;
  line-height: 1.7;
}

.page-index-review-fabet__review-body p {
  margin-bottom: 16px;
  font-size: 16px;
}

.page-index-review-fabet__review-body p a {
  color: #CC0000;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-fabet__review-body p a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-index-review-fabet__cta-link {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #CC0000, #FFD700);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.page-index-review-fabet__cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Intro Section (Module 2) */
.page-index-review-fabet__intro-section {
  padding: 60px 20px;
  background: var(--dark-bg-1);
  color: #ffffff;
  text-align: center;
}

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

.page-index-review-fabet__intro-title {
  font-size: 32px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 40px;
}

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

.page-index-review-fabet__intro-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-fabet__intro-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet__intro-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-review-fabet__intro-item h3 {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-review-fabet__intro-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Games Section (Module 3) */
.page-index-review-fabet__games-section {
  padding: 60px 20px;
  background: #f1f3f5;
  color: #333333;
  text-align: center;
}

.page-index-review-fabet__section-description {
  font-size: 17px;
  color: #555555;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

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

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

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

.page-index-review-fabet__game-card h3 {
  font-size: 24px;
  color: #CC0000;
  margin: 20px 15px 10px;
}

.page-index-review-fabet__game-card p {
  font-size: 15px;
  color: #666666;
  padding: 0 15px 20px;
  line-height: 1.6;
}

.page-index-review-fabet__game-button {
  display: inline-block;
  background: linear-gradient(135deg, #CC0000, #FFD700);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.page-index-review-fabet__game-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Promotions Section (Module 4) */
.page-index-review-fabet__promotions-section {
  padding: 60px 20px;
  background: var(--dark-bg-1);
  color: #ffffff;
  text-align: center;
}

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

.page-index-review-fabet__promotion-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-index-review-fabet__promotion-title {
  font-size: 22px;
  color: #FFD700;
  margin: 20px 15px 10px;
}

.page-index-review-fabet__promotion-text {
  font-size: 15px;
  color: #f0f0f0;
  padding: 0 15px 20px;
  line-height: 1.6;
}

.page-index-review-fabet__promotion-text a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-fabet__promotion-text a:hover {
  color: #CC0000;
  text-decoration: underline;
}

.page-index-review-fabet__promotion-button {
  display: inline-block;
  background: #CC0000;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.page-index-review-fabet__promotion-button:hover {
  background: #FFD700;
  color: #CC0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.page-index-review-fabet__all-promotions-button,
.page-index-review-fabet__register-now-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-index-review-fabet__all-promotions-button {
  background: #FFD700;
  color: #CC0000;
  border: 2px solid #FFD700;
}

.page-index-review-fabet__all-promotions-button:hover {
  background: #CC0000;
  color: #FFD700;
  border-color: #CC0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet__register-now-button {
  background: #CC0000;
  color: #ffffff;
  border: 2px solid #CC0000;
}

.page-index-review-fabet__register-now-button:hover {
  background: #FFD700;
  color: #CC0000;
  border-color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Blog Section (Module 5) */
.page-index-review-fabet__blog-section {
  padding: 60px 20px;
  background: #f1f3f5;
  color: #333333;
  text-align: center;
}

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

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

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

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

.page-index-review-fabet__blog-title {
  font-size: 20px;
  color: #333333;
  margin: 20px 15px 10px;
  line-height: 1.4;
}

.page-index-review-fabet__blog-title a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-fabet__blog-title a:hover {
  color: #CC0000;
}

.page-index-review-fabet__blog-summary {
  font-size: 15px;
  color: #666666;
  padding: 0 15px;
  line-height: 1.6;
}

.page-index-review-fabet__blog-date {
  display: block;
  font-size: 13px;
  color: #999999;
  margin: 15px;
  padding-bottom: 10px;
}

.page-index-review-fabet__view-all-button {
  display: inline-block;
  background: #CC0000;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 40px;
  transition: all 0.3s ease;
}

.page-index-review-fabet__view-all-button:hover {
  background: #FFD700;
  color: #CC0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Section (Module 6) */
.page-index-review-fabet__faq-section {
  padding: 60px 20px;
  background: var(--dark-bg-1);
  color: #ffffff;
  text-align: center;
}

.page-index-review-fabet__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

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

.page-index-review-fabet__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 15px;
  opacity: 0;
}

.page-index-review-fabet__faq-item.active .page-index-review-fabet__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0 0 5px 5px;
}

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

.page-index-review-fabet__faq-question:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.page-index-review-fabet__faq-question:active {
  background: rgba(255, 255, 255, 0.3);
}

.page-index-review-fabet__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-index-review-fabet__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  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-fabet__faq-item.active .page-index-review-fabet__faq-toggle {
  color: #CC0000;
  transform: rotate(45deg);
}

.page-index-review-fabet__faq-answer p {
  color: #f0f0f0;
  line-height: 1.6;
}

.page-index-review-fabet__faq-answer p a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-fabet__faq-answer p a:hover {
  color: #CC0000;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-fabet__review-content-card {
    padding: 30px;
  }

  .page-index-review-fabet__page-title {
    font-size: 30px;
  }

  .page-index-review-fabet__section-heading {
    font-size: 24px;
  }

  .page-index-review-fabet__intro-title {
    font-size: 28px;
  }

  .page-index-review-fabet__intro-icon {
    width: 70px;
    height: 70px;
  }

  .page-index-review-fabet__intro-item h3 {
    font-size: 20px;
  }

  .page-index-review-fabet__game-image {
    height: 180px;
  }

  .page-index-review-fabet__game-card h3 {
    font-size: 20px;
  }

  .page-index-review-fabet__promotion-image {
    height: 160px;
  }

  .page-index-review-fabet__promotion-title {
    font-size: 20px;
  }

  .page-index-review-fabet__blog-image {
    height: 180px;
  }

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

  .page-index-review-fabet__all-promotions-button,
  .page-index-review-fabet__register-now-button {
    padding: 12px 25px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-index-review-fabet__review-content-section {
    padding: 20px 15px;
    padding-top: 10px !important; /* Mobile fixed header adjustment */
  }

  .page-index-review-fabet__review-content-card {
    padding: 24px 20px;
  }

  .page-index-review-fabet__page-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .page-index-review-fabet__section-heading {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-index-review-fabet__review-content-card h1 {
    font-size: 28px;
  }

  .page-index-review-fabet__review-content-card h2 {
    font-size: 20px;
  }

  .page-index-review-fabet__review-body p {
    font-size: 15px;
  }

  .page-index-review-fabet__intro-section,
  .page-index-review-fabet__games-section,
  .page-index-review-fabet__promotions-section,
  .page-index-review-fabet__blog-section,
  .page-index-review-fabet__faq-section {
    padding: 30px 15px;
  }

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

  .page-index-review-fabet__intro-grid,
  .page-index-review-fabet__games-grid,
  .page-index-review-fabet__promotion-grid,
  .page-index-review-fabet__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-review-fabet__intro-icon {
    width: 60px;
    height: 60px;
  }

  .page-index-review-fabet__intro-item h3 {
    font-size: 18px;
  }

  .page-index-review-fabet__intro-item p {
    font-size: 14px;
  }

  .page-index-review-fabet__game-image {
    height: 160px;
  }

  .page-index-review-fabet__game-card h3 {
    font-size: 18px;
  }

  .page-index-review-fabet__game-card p {
    font-size: 14px;
  }

  .page-index-review-fabet__promotion-image {
    height: 140px;
  }

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

  .page-index-review-fabet__promotion-text {
    font-size: 14px;
  }

  .page-index-review-fabet__blog-image {
    height: 160px;
  }

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

  .page-index-review-fabet__blog-summary,
  .page-index-review-fabet__blog-date {
    font-size: 13px;
  }

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

  .page-index-review-fabet__all-promotions-button,
  .page-index-review-fabet__register-now-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
  }

  .page-index-review-fabet__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-index-review-fabet__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-index-review-fabet__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-index-review-fabet__faq-answer {
    padding: 0 15px;
  }
  
  .page-index-review-fabet__faq-item.active .page-index-review-fabet__faq-answer {
    padding: 15px !important;
  }

  /* Ensure all images are responsive */
  .page-index-review-fabet img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index-review-fabet__section,
  .page-index-review-fabet__card,
  .page-index-review-fabet__container,
  .page-index-review-fabet__intro-item,
  .page-index-review-fabet__game-card,
  .page-index-review-fabet__promotion-card,
  .page-index-review-fabet__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-review-fabet__review-content-section .page-index-review-fabet__review-content-card {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-review-fabet__page-title {
    font-size: 24px;
  }
  .page-index-review-fabet__section-heading {
    font-size: 20px;
  }
  .page-index-review-fabet__intro-title {
    font-size: 22px;
  }
  .page-index-review-fabet__intro-item h3 {
    font-size: 16px;
  }
  .page-index-review-fabet__game-card h3 {
    font-size: 16px;
  }
  .page-index-review-fabet__promotion-title {
    font-size: 16px;
  }
  .page-index-review-fabet__blog-title {
    font-size: 15px;
  }
  .page-index-review-fabet__all-promotions-button,
  .page-index-review-fabet__register-now-button {
    font-size: 14px;
    padding: 10px 15px;
  }
}