.page-index-review-fabet {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #DC143C; /* Crimson Red */
  --dark-bg: #1a1a1a;
  --light-text: #f5f5f5;
  --dark-text: #333;
  --card-bg: #2a2a2a;
  --border-color: #444;
  --hover-gold: #e6c200;
  --hover-red: #c41036;
  font-family: 'Arial', sans-serif;
  color: var(--light-text);
  background-color: var(--dark-bg);
  line-height: 1.6;
}

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

.page-index-review-fabet__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.page-index-review-fabet h1,
.page-index-review-fabet h2,
.page-index-review-fabet h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-index-review-fabet h1 {
  font-size: 2.8em;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-fabet h2 {
  font-size: 2.2em;
  text-transform: uppercase;
}

.page-index-review-fabet h3 {
  font-size: 1.6em;
  color: var(--light-text);
  margin-bottom: 15px;
}

.page-index-review-fabet p {
  margin-bottom: 15px;
  color: var(--light-text);
}

.page-index-review-fabet__hero {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1)), url('[GALLERY:hero:fabet_review_background,k9bet,vietnam_casino_bg]') center center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.page-index-review-fabet__hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-index-review-fabet__hero .page-index-review-fabet__container {
  position: relative;
  z-index: 2;
}

.page-index-review-fabet__hero p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 20px auto 40px auto;
  color: #e0e0e0;
}

.page-index-review-fabet__cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.page-index-review-fabet__cta-button:hover {
  background-color: var(--hover-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet__cta-button.page-index-review-fabet__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  margin-top: 30px;
}

.page-index-review-fabet__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-index-review-fabet__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-index-review-fabet__text-content {
  flex: 1;
}

.page-index-review-fabet__image-container {
  flex: 1;
  min-width: 300px;
}

.page-index-review-fabet__image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

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

.page-index-review-fabet__product-item,
.page-index-review-fabet__promo-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-index-review-fabet__product-item img,
.page-index-review-fabet__promo-item img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-review-fabet__product-item h3,
.page-index-review-fabet__promo-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
}

.page-index-review-fabet__product-item h3 a,
.page-index-review-fabet__promo-item h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-fabet__product-item h3 a:hover,
.page-index-review-fabet__promo-item h3 a:hover {
  color: var(--hover-gold);
}

.page-index-review-fabet__product-item p,
.page-index-review-fabet__promo-item p {
  font-size: 0.95em;
  color: #ccc;
  flex-grow: 1;
}

.page-index-review-fabet__link-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--dark-text);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid var(--primary-color);
}

.page-index-review-fabet__link-button:hover {
  background-color: var(--hover-gold);
  transform: translateY(-2px);
}

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

.page-index-review-fabet__step-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.page-index-review-fabet__step-item h3 {
  color: var(--secondary-color);
  text-align: left;
  margin-bottom: 20px;
}

.page-index-review-fabet__step-item ol,
.page-index-review-fabet__step-item ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-index-review-fabet__step-item ol li,
.page-index-review-fabet__step-item ul li {
  margin-bottom: 8px;
}

.page-index-review-fabet__step-item .page-index-review-fabet__link-button {
  align-self: flex-start;
  margin-top: auto; /* Push button to bottom */
}

.page-index-review-fabet__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-fabet__card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet__card--pros h3 {
  color: var(--primary-color);
  text-align: left;
}

.page-index-review-fabet__card--cons h3 {
  color: var(--secondary-color);
  text-align: left;
}

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

.page-index-review-fabet__card ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  color: #e0e0e0;
}

.page-index-review-fabet__card--pros ul li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-index-review-fabet__card--cons ul li::before {
  content: '✕';
  color: var(--secondary-color);
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

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

/* FAQ default state - answer hidden */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: var(--card-bg);
  border-radius: 0 0 5px 5px;
  color: #e0e0e0;
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px;
  border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

/* Question style */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  margin-bottom: 10px; /* Spacing between FAQ items */
}

.faq-question:hover {
  background: #3a3a3a;
  border-color: var(--primary-color);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--light-text);
  text-align: left;
}

/* Toggle icon */
.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-review-fabet__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-index-review-fabet__content-wrapper--reversed {
    flex-direction: column;
  }

  .page-index-review-fabet__grid-2-cols {
    grid-template-columns: 1fr;
  }

  .page-index-review-fabet__hero h1 {
    font-size: 2.2em;
  }

  .page-index-review-fabet h2 {
    font-size: 1.8em;
  }

  .page-index-review-fabet h3 {
    font-size: 1.4em;
  }

  .page-index-review-fabet__product-item img,
  .page-index-review-fabet__promo-item img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-index-review-fabet__section {
    padding: 40px 0;
  }

  .page-index-review-fabet__hero {
    padding: 80px 0;
  }

  .page-index-review-fabet__hero h1 {
    font-size: 1.8em;
  }

  .page-index-review-fabet__hero p {
    font-size: 1em;
    margin: 15px auto 30px auto;
  }

  .page-index-review-fabet__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-review-fabet__cta-button.page-index-review-fabet__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-index-review-fabet__product-grid,
  .page-index-review-fabet__promo-grid,
  .page-index-review-fabet__guide-steps {
    gap: 20px;
  }

  .page-index-review-fabet__product-item,
  .page-index-review-fabet__promo-item,
  .page-index-review-fabet__step-item,
  .page-index-review-fabet__card {
    padding: 20px;
  }

  .faq-question {
    padding: 12px 15px;
  }

  .faq-question h3 {
    font-size: 1.1em;
  }

  .faq-toggle {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .page-index-review-fabet h1 {
    font-size: 1.6em;
  }

  .page-index-review-fabet h2 {
    font-size: 1.5em;
  }

  .page-index-review-fabet h3 {
    font-size: 1.2em;
  }

  .page-index-review-fabet__product-grid,
  .page-index-review-fabet__promo-grid,
  .page-index-review-fabet__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-index-review-fabet__product-item img,
  .page-index-review-fabet__promo-item img {
    height: 160px;
  }
}