.page-index-review-fabet {
  --primary-color: #003366;
  --secondary-color: #FFD700;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --bg-light: #f8f8f8;
  --bg-dark: #002244;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

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

.page-index-review-fabet-section {
  padding: 60px 0;
  text-align: center;
}

.page-index-review-fabet-section:nth-of-type(even) {
  background-color: var(--bg-light);
}

.page-index-review-fabet-section-title {
  font-size: 3em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-review-fabet-section-description {
  font-size: 1.1em;
  color: var(--text-color-dark);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-index-review-fabet-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #004488 100%);
  color: var(--text-color-light);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-review-fabet-hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-index-review-fabet-hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet-hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.page-index-review-fabet-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.3em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--secondary-color);
}

.page-index-review-fabet-cta-button:hover {
  background-color: #ffc200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet-cta-button.small-button {
    padding: 12px 30px;
    font-size: 1.1em;
    border-radius: 30px;
}

/* Content Wrapper with Image */
.page-index-review-fabet-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

.page-index-review-fabet-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.page-index-review-fabet-content-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index-review-fabet-text-content {
  flex: 2;
  min-width: 300px;
  max-width: 600px;
}

.page-index-review-fabet-text-content h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-review-fabet-text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: var(--text-color-dark);
}

.page-index-review-fabet-text-content ul, .page-index-review-fabet-text-content ol {
  margin-left: 20px;
  margin-bottom: 15px;
  list-style-position: inside;
}

.page-index-review-fabet-text-content li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

/* Game Grid */
.page-index-review-fabet-game-grid, .page-index-review-fabet-promo-grid, .page-index-review-fabet-pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-fabet-game-card, .page-index-review-fabet-promo-card, .page-index-review-fabet-pros-card, .page-index-review-fabet-cons-card, .page-index-review-fabet-step-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  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-game-card:hover, .page-index-review-fabet-promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-index-review-fabet-game-image, .page-index-review-fabet-promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-review-fabet-game-title, .page-index-review-fabet-promo-title {
  font-size: 1.7em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-review-fabet-game-description, .page-index-review-fabet-promo-description {
  font-size: 1em;
  color: var(--text-color-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-review-fabet-card-link {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.95em;
  transition: all 0.3s ease;
  margin-top: auto; /* Push to bottom */
}

.page-index-review-fabet-card-link:hover {
  background-color: #ffc200;
  transform: translateY(-2px);
}

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

.page-index-review-fabet-step-card {
    text-align: left;
    padding: 35px;
}

.page-index-review-fabet-step-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-review-fabet-step-card ol, .page-index-review-fabet-step-card ul {
    margin-left: 0;
    padding-left: 20px;
    list-style-position: outside;
    margin-bottom: 20px;
}

.page-index-review-fabet-step-card li {
    margin-bottom: 10px;
    font-size: 1em;
    color: var(--text-color-dark);
}

/* Pros and Cons */
.page-index-review-fabet-pros-card, .page-index-review-fabet-cons-card {
  text-align: left;
  padding: 35px;
}

.page-index-review-fabet-pros-title {
  font-size: 1.8em;
  color: #28a745; /* Green for pros */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-review-fabet-cons-title {
  font-size: 1.8em;
  color: #dc3545; /* Red for cons */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-review-fabet-pros-card ul, .page-index-review-fabet-cons-card ul {
  list-style: none;
  padding: 0;
}

.page-index-review-fabet-pros-card li::before {
  content: '✅';
  margin-right: 10px;
}

.page-index-review-fabet-cons-card li::before {
  content: '❌';
  margin-right: 10px;
}

.page-index-review-fabet-pros-card li, .page-index-review-fabet-cons-card li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: var(--text-color-dark);
}

/* FAQ Section */
.page-index-review-fabet-faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-index-review-fabet-faq-list .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-index-review-fabet-faq-list .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-index-review-fabet-faq-list .faq-question:hover {
  background: var(--bg-light);
}

.page-index-review-fabet-faq-list .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--primary-color);
  font-weight: bold;
}

.page-index-review-fabet-faq-list .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-index-review-fabet-faq-list .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.page-index-review-fabet-faq-list .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  color: var(--text-color-dark);
}

.page-index-review-fabet-faq-list .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

.page-index-review-fabet-faq-list .faq-answer p {
  margin: 0;
  font-size: 1.05em;
}

/* Conclusion Section */
.page-index-review-fabet-conclusion {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 80px 20px;
}

.page-index-review-fabet-conclusion .page-index-review-fabet-section-title {
  color: var(--secondary-color);
}

.page-index-review-fabet-conclusion .page-index-review-fabet-section-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-fabet-hero-title {
    font-size: 3em;
  }
  .page-index-review-fabet-hero-subtitle {
    font-size: 1.3em;
  }
  .page-index-review-fabet-section-title {
    font-size: 2.5em;
  }
  .page-index-review-fabet-content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-index-review-fabet-image-wrapper {
    order: -1; /* Image above text on smaller screens */
  }
  .page-index-review-fabet-text-content {
    max-width: 100%;
  }
  .page-index-review-fabet-text-content h3 {
    text-align: center;
  }
  .page-index-review-fabet-text-content ul, .page-index-review-fabet-text-content ol {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    max-width: 90%;
  }
  .page-index-review-fabet-pros-card, .page-index-review-fabet-cons-card, .page-index-review-fabet-step-card {
      text-align: center;
  }
  .page-index-review-fabet-pros-card ul, .page-index-review-fabet-cons-card ul, .page-index-review-fabet-step-card ul, .page-index-review-fabet-step-card ol {
      text-align: left;
      padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .page-index-review-fabet-hero {
    padding: 80px 15px;
  }
  .page-index-review-fabet-hero-title {
    font-size: 2.5em;
  }
  .page-index-review-fabet-hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-review-fabet-cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-index-review-fabet-section {
    padding: 40px 0;
  }
  .page-index-review-fabet-section-title {
    font-size: 2em;
  }
  .page-index-review-fabet-section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-index-review-fabet-game-grid, .page-index-review-fabet-promo-grid, .page-index-review-fabet-pros-cons-grid, .page-index-review-fabet-transaction-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-review-fabet-game-card, .page-index-review-fabet-promo-card, .page-index-review-fabet-pros-card, .page-index-review-fabet-cons-card, .page-index-review-fabet-step-card {
    padding: 25px;
  }
  .page-index-review-fabet-game-image, .page-index-review-fabet-promo-image {
    height: 180px;
  }
  .page-index-review-fabet-game-title, .page-index-review-fabet-promo-title, .page-index-review-fabet-step-title, .page-index-review-fabet-pros-title, .page-index-review-fabet-cons-title {
    font-size: 1.5em;
  }
  .page-index-review-fabet-faq-list .faq-question {
    padding: 15px 20px;
  }
  .page-index-review-fabet-faq-list .faq-question h3 {
    font-size: 1.1em;
  }
  .page-index-review-fabet-faq-list .faq-toggle {
    font-size: 1.5em;
  }
  .page-index-review-fabet-faq-list .faq-answer {
    padding: 0 20px;
  }
  .page-index-review-fabet-faq-list .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-index-review-fabet-conclusion {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .page-index-review-fabet-hero-title {
    font-size: 2em;
  }
  .page-index-review-fabet-hero-subtitle {
    font-size: 1em;
  }
  .page-index-review-fabet-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-review-fabet-section-title {
    font-size: 1.8em;
  }
  .page-index-review-fabet-text-content h3 {
    font-size: 1.6em;
  }
  .page-index-review-fabet-game-title, .page-index-review-fabet-promo-title, .page-index-review-fabet-step-title, .page-index-review-fabet-pros-title, .page-index-review-fabet-cons-title {
    font-size: 1.3em;
  }
  .page-index-review-fabet-game-image, .page-index-review-fabet-promo-image {
    height: 150px;
  }
}