.page-index-review-fabet {
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
  color: #ffffff; /* Light text for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-index-review-fabet__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-review-fabet__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust for fixed header */
  background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue for hero */
  color: #ffffff;
  box-sizing: border-box;
}

.page-index-review-fabet__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-review-fabet__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-index-review-fabet__hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-index-review-fabet__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #ffc107; /* Auxiliary color for CTA */
  color: #000000; /* Dark text for light button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
}

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

.page-index-review-fabet__cta-button--bottom {
  margin-top: 30px;
}

.page-index-review-fabet__review-content-section {
  padding: 60px 0;
  background: #0a0a0a; /* Dark background */
  color: #ffffff;
}

.page-index-review-fabet__review-content-container {
  max-width: 1000px; /* Wider for main content */
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-review-fabet__review-content-card {
  background: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards on dark bg */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 40px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-review-fabet__card-title {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}

.page-index-review-fabet__card-subtitle {
  font-size: 24px;
  font-weight: bold;
  color: #ffc107; /* Auxiliary color for subheadings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-review-fabet__review-body p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-index-review-fabet__review-body p a {
  color: #ffc107; /* Links in content */
  text-decoration: none;
  font-weight: bold;
}

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

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

.page-index-review-fabet__image--full-width {
  width: 100%;
}

.page-index-review-fabet__games-section,
.page-index-review-fabet__promotions-section,
.page-index-review-fabet__news-section,
.page-index-review-fabet__faq-section {
  padding: 60px 0;
  box-sizing: border-box;
}

.page-index-review-fabet__light-bg {
  background-color: #f1f3f5;
  color: #333333; /* Dark text for light background */
}

.page-index-review-fabet__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-index-review-fabet__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from parent section */
}

.page-index-review-fabet__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
}

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

.page-index-review-fabet__game-card,
.page-index-review-fabet__promotion-card,
.page-index-review-fabet__news-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-index-review-fabet__game-thumbnail,
.page-index-review-fabet__promotion-image,
.page-index-review-fabet__news-image {
  max-width: 100%;
  height: 200px; /* Fixed height for visual consistency */
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
  display: block;
}

.page-index-review-fabet__game-title,
.page-index-review-fabet__promotion-title,
.page-index-review-fabet__news-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #007bff;
}

.page-index-review-fabet__news-title a {
  color: #007bff;
  text-decoration: none;
}

.page-index-review-fabet__news-title a:hover {
  text-decoration: underline;
}

.page-index-review-fabet__game-text,
.page-index-review-fabet__promotion-text,
.page-index-review-fabet__news-excerpt {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #555555;
}

.page-index-review-fabet__game-button,
.page-index-review-fabet__promotion-button,
.page-index-review-fabet__news-read-more {
  display: inline-block;
  padding: 10px 25px;
  background: #007bff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  align-self: center;
}

.page-index-review-fabet__game-button:hover,
.page-index-review-fabet__promotion-button:hover,
.page-index-review-fabet__news-read-more:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

/* FAQ Section */
.page-index-review-fabet__faq-section {
  padding-bottom: 80px; /* Extra padding for bottom */
}

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

.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;
  color: #e0e0e0;
}

.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.05); /* Light background for answer on dark section */
  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: #007bff; /* Primary color for question background */
  border: 1px solid #0056b3;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-index-review-fabet__faq-question:hover {
  background: #0056b3;
  border-color: #004494;
}

.page-index-review-fabet__faq-question:active {
  background: #004494;
}

.page-index-review-fabet__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  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: #ffffff;
  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: #ffc107;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-fabet__hero-title {
    font-size: 42px;
  }
  .page-index-review-fabet__hero-subtitle {
    font-size: 18px;
  }
  .page-index-review-fabet__card-title {
    font-size: 28px;
  }
  .page-index-review-fabet__card-subtitle {
    font-size: 22px;
  }
  .page-index-review-fabet__section-title {
    font-size: 32px;
  }
  .page-index-review-fabet__section-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-index-review-fabet__hero-section {
    padding-top: 160px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
  }
  .page-index-review-fabet__hero-title {
    font-size: 32px;
  }
  .page-index-review-fabet__hero-subtitle {
    font-size: 16px;
  }
  .page-index-review-fabet__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-index-review-fabet__review-content-section,
  .page-index-review-fabet__games-section,
  .page-index-review-fabet__promotions-section,
  .page-index-review-fabet__news-section,
  .page-index-review-fabet__faq-section {
    padding: 40px 0;
  }
  .page-index-review-fabet__review-content-card {
    padding: 25px;
  }
  .page-index-review-fabet__card-title {
    font-size: 24px;
  }
  .page-index-review-fabet__card-subtitle {
    font-size: 20px;
  }
  .page-index-review-fabet__review-body p {
    font-size: 15px;
  }
  .page-index-review-fabet__section-title {
    font-size: 28px;
  }
  .page-index-review-fabet__section-description {
    font-size: 15px;
  }
  .page-index-review-fabet__game-card,
  .page-index-review-fabet__promotion-card,
  .page-index-review-fabet__news-card {
    padding: 20px;
  }
  .page-index-review-fabet__game-thumbnail,
  .page-index-review-fabet__promotion-image,
  .page-index-review-fabet__news-image {
    height: 180px;
  }
  .page-index-review-fabet__game-title,
  .page-index-review-fabet__promotion-title,
  .page-index-review-fabet__news-title {
    font-size: 18px;
  }
  .page-index-review-fabet__game-text,
  .page-index-review-fabet__promotion-text,
  .page-index-review-fabet__news-excerpt {
    font-size: 14px;
  }
  .page-index-review-fabet__game-button,
  .page-index-review-fabet__promotion-button,
  .page-index-review-fabet__news-read-more {
    font-size: 14px;
    padding: 8px 20px;
  }
  .page-index-review-fabet__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-index-review-fabet__faq-question h3 {
    font-size: 16px;
    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;
  }
  .page-index-review-fabet img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-index-review-fabet__container,
  .page-index-review-fabet__review-content-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}