:root {
  --primary-color: #0A192F; /* Deep Navy Blue */
  --secondary-color: #FFD700; /* Gold */
  --light-text-color: #ffffff;
  --dark-text-color: #333333;
  --light-bg-color: #f8f9fa;
  --card-bg-color: #ffffff;
  --border-color: #e0e0e0;
  --accent-color: #007bff; /* For links and interactive elements */
  --error-color: #dc3545;
}

/* Base styles for the page content */
.page-index-review-fabet {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--dark-text-color); /* Default text color for light backgrounds */
  background-color: var(--light-bg-color); /* Matches the body background if light */
}

/* Fixed navigation bar padding adjustment */
.page-index-review-fabet__hero-section {
  padding-top: 180px; /* Desktop: Adjust based on fixed header height */
  padding-bottom: 60px;
}

.page-index-review-fabet__section {
  padding: 60px 20px;
  margin-bottom: 20px;
}

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

.page-index-review-fabet__heading {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-index-review-fabet__sub-heading {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.4;
}

.page-index-review-fabet__text-block {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--dark-text-color);
}

.page-index-review-fabet__card {
  background-color: var(--card-bg-color);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

/* HERO Section */
.page-index-review-fabet__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), #1a3a69); /* Darker gradient for hero */
  color: var(--light-text-color);
  overflow: hidden;
}

.page-index-review-fabet__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-review-fabet__hero-image-wrapper {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-index-review-fabet__hero-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--secondary-color); /* Gold title for impact */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-index-review-fabet__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--light-text-color);
  opacity: 0.9;
}

.page-index-review-fabet__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 10px;
  font-size: 22px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  border: none;
}

.page-index-review-fabet__cta-button:hover {
  background: #ffcc00; /* Slightly lighter gold */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.page-index-review-fabet__cta-button--large {
  padding: 20px 50px;
  font-size: 24px;
}

/* Overview Section */
.page-index-review-fabet__overview-section .page-index-review-fabet__text-block {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
}

/* Detailed Review Section */
.page-index-review-fabet__detailed-review-section .page-index-review-fabet__review-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-review-fabet__detailed-review-section .page-index-review-fabet__review-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

.page-index-review-fabet__game-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.page-index-review-fabet__game-list li {
  background-color: var(--light-bg-color);
  border-left: 5px solid var(--secondary-color);
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 16px;
  color: var(--dark-text-color);
}

.page-index-review-fabet__game-list li a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-index-review-fabet__game-list li a:hover {
  text-decoration: underline;
  color: var(--accent-color);
}

.page-index-review-fabet__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--light-text-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: none;
}

.page-index-review-fabet__btn-primary:hover {
  background: #1a3a69; /* Darker shade of primary */
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--card-bg-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--primary-color);
}

.page-index-review-fabet__btn-secondary:hover {
  background: var(--light-bg-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* Pros and Cons Section */
.page-index-review-fabet__pros-cons-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.page-index-review-fabet__pros-card,
.page-index-review-fabet__cons-card {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

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

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

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

.page-index-review-fabet__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--dark-text-color);
}

.page-index-review-fabet__pros-card li:before {
  content: '✓';
  color: #28a745;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
}

.page-index-review-fabet__cons-card li:before {
  content: '✕';
  color: #dc3545;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
}

.page-index-review-fabet__list-strong {
  font-weight: bold;
  color: var(--primary-color);
}

/* Registration Guide Section */
.page-index-review-fabet__steps-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.page-index-review-fabet__step-card {
  flex: 1;
  min-width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-review-fabet__step-title {
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

.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;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.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;
  background-color: var(--card-bg-color); /* Light background for answer */
  color: var(--dark-text-color);
}

.page-index-review-fabet__faq-item.active .page-index-review-fabet__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  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: var(--card-bg-color);
  border: 1px solid var(--border-color);
  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: var(--light-bg-color);
  border-color: #d0d0d0;
}

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

.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; /* Allow click on entire question div */
  color: var(--primary-color);
}

.page-index-review-fabet__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Allow click on entire question div */
  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: var(--secondary-color);
  transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
}

.page-index-review-fabet__faq-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
}

.page-index-review-fabet__faq-link:hover {
  text-decoration: underline;
}

/* Conclusion Section */
.page-index-review-fabet__conclusion-section {
  background: var(--primary-color); /* Dark background for conclusion */
  color: var(--light-text-color);
  text-align: center;
  padding: 80px 20px;
}

.page-index-review-fabet__conclusion-section .page-index-review-fabet__heading {
  color: var(--secondary-color);
  font-size: 40px;
}

.page-index-review-fabet__conclusion-section .page-index-review-fabet__text-block {
  color: var(--light-text-color);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  margin-bottom: 30px;
}

.page-index-review-fabet__conclusion-link {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-index-review-fabet__conclusion-link:hover {
  color: #ffcc00;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-fabet__hero-title {
    font-size: 42px;
  }
  .page-index-review-fabet__heading {
    font-size: 30px;
  }
  .page-index-review-fabet__sub-heading {
    font-size: 22px;
  }
  .page-index-review-fabet__cta-button {
    font-size: 20px;
    padding: 15px 35px;
  }
}

@media (max-width: 768px) {
  .page-index-review-fabet__hero-section {
    padding-top: 140px !important; /* Mobile: Adjust based on fixed header height */
    padding-bottom: 40px;
  }
  
  .page-index-review-fabet__section {
    padding: 40px 15px;
    margin-bottom: 15px;
  }

  .page-index-review-fabet__container {
    padding: 0 10px;
  }

  .page-index-review-fabet__hero-title {
    font-size: 32px;
  }
  .page-index-review-fabet__hero-description {
    font-size: 16px;
  }
  .page-index-review-fabet__cta-button {
    font-size: 18px;
    padding: 12px 30px;
  }
  .page-index-review-fabet__cta-button--large {
    font-size: 20px;
    padding: 15px 35px;
  }

  .page-index-review-fabet__heading {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-index-review-fabet__sub-heading {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .page-index-review-fabet__text-block {
    font-size: 15px;
  }

  .page-index-review-fabet__card {
    padding: 20px;
  }

  .page-index-review-fabet__pros-cons-wrapper,
  .page-index-review-fabet__steps-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .page-index-review-fabet__pros-card,
  .page-index-review-fabet__cons-card,
  .page-index-review-fabet__step-card {
    min-width: unset;
    width: 100%;
  }
  
  .page-index-review-fabet__list li {
    font-size: 15px;
    padding-left: 25px;
  }

  .page-index-review-fabet__game-list li {
    font-size: 15px;
    padding: 8px 12px;
  }

  .page-index-review-fabet__btn-primary,
  .page-index-review-fabet__btn-secondary {
    font-size: 16px;
    padding: 10px 20px;
  }

  /* FAQ Mobile adjustments */
  .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;
  }

  .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__hero-image-wrapper { /* Ensure image wrapper also adapts */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left and padding-right are handled by .page-index-review-fabet__section */
  }
}

/* Color Contrast Fixes */
.page-index-review-fabet__dark-bg {
  background: var(--primary-color);
  color: var(--light-text-color); /* Deep Navy background with white text */
}

.page-index-review-fabet__light-bg {
  background: var(--light-bg-color);
  color: var(--dark-text-color); /* Light background with dark text */
}

.page-index-review-fabet__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}