.page-index-review-fabet {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #B8860B; /* Darker Gold */
  --dark-bg: #1A202C; /* Dark background */
  --light-text: #E0E0E0; /* Light grey for text */
  --white-text: #FFFFFF;
  --card-bg: #2D3748;
  --border-color: #4A5568;
  font-family: 'Arial', sans-serif;
  color: var(--light-text);
  background-color: var(--dark-bg);
}

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

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

.page-index-review-fabet h1 {
  font-size: 2.8em;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-review-fabet h2 {
  font-size: 2.2em;
  margin-top: 40px;
}

.page-index-review-fabet h3 {
  font-size: 1.8em;
  margin-top: 30px;
}

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

.page-index-review-fabet a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-fabet a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-index-review-fabet .cta-button,
.page-index-review-fabet .btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: var(--dark-bg);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-review-fabet .cta-button:hover,
.page-index-review-fabet .btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet .btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.page-index-review-fabet .btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

/* Hero Section */
.page-index-review-fabet .hero-review-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--dark-bg), #2C3E50);
  overflow: hidden;
}

.page-index-review-fabet .hero-review-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-review-fabet .hero-review-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-review-fabet .hero-review-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index-review-fabet .hero-review-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-index-review-fabet .hero-review-content h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-index-review-fabet .hero-review-content p {
  color: var(--white-text);
  font-size: 1.2em;
  margin-bottom: 30px;
  text-align: center;
}

/* General Section Styling */
.page-index-review-fabet .introduction-section,
.page-index-review-fabet .game-types-section,
.page-index-review-fabet .promotions-section,
.page-index-review-fabet .security-support-section,
.page-index-review-fabet .guide-section,
.page-index-review-fabet .faq-section,
.page-index-review-fabet .conclusion-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-index-review-fabet .introduction-section h2,
.page-index-review-fabet .security-support-section h2,
.page-index-review-fabet .guide-section h2,
.page-index-review-fabet .conclusion-section h2 {
  text-align: center;
}

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

.page-index-review-fabet .game-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-fabet .game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-index-review-fabet .game-card .game-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--primary-color);
}

.page-index-review-fabet .game-card h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
  text-align: center;
}

.page-index-review-fabet .game-card h3 a {
  color: inherit; /* Inherit color from h3 */
  text-decoration: none;
}

.page-index-review-fabet .game-card h3 a:hover {
  text-decoration: underline;
}

.page-index-review-fabet .game-card p {
  font-size: 0.95em;
  color: var(--light-text);
  text-align: justify;
  flex-grow: 1;
}

/* Promotions Section */
.page-index-review-fabet .promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-index-review-fabet .promo-list li {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--primary-color);
}

.page-index-review-fabet .promo-list li h3 {
  color: var(--primary-color);
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-index-review-fabet .promo-list li p {
  color: var(--light-text);
}

/* Guide Section */
.page-index-review-fabet .guide-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.page-index-review-fabet .step-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  flex: 1 1 calc(33% - 20px);
  min-width: 280px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  position: relative;
}

.page-index-review-fabet .step-item .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--dark-bg);
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-index-review-fabet .step-item p {
  color: var(--light-text);
  font-size: 1em;
  text-align: justify;
}

/* FAQ Section */
.page-index-review-fabet .faq-section h2 {
  margin-bottom: 30px;
}

.page-index-review-fabet .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

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

.page-index-review-fabet .faq-question:hover {
  background: #3A475C;
}

.page-index-review-fabet .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--primary-color);
  text-align: left;
  flex-grow: 1;
}

.page-index-review-fabet .faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: var(--primary-color);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-index-review-fabet .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #2D3748;
  color: var(--light-text);
}

.page-index-review-fabet .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 25px;
  border-top: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px;
}

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

/* Conclusion Section */
.page-index-review-fabet .conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-index-review-fabet .conclusion-section p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-fabet h1 {
    font-size: 2.5em;
  }
  .page-index-review-fabet h2 {
    font-size: 2em;
  }
  .page-index-review-fabet .game-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-index-review-fabet .step-item {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .page-index-review-fabet .hero-review-section {
    padding: 60px 15px;
  }
  .page-index-review-fabet .hero-review-image img {
    border-radius: 8px;
  }
  .page-index-review-fabet .hero-review-content h1 {
    font-size: 2em;
  }
  .page-index-review-fabet .hero-review-content p {
    font-size: 1em;
  }
  .page-index-review-fabet h2 {
    font-size: 1.8em;
  }
  .page-index-review-fabet h3 {
    font-size: 1.4em;
  }
  .page-index-review-fabet .game-grid {
    grid-template-columns: 1fr;
  }
  .page-index-review-fabet .game-card .game-image {
    height: 200px;
  }
  .page-index-review-fabet .step-item {
    flex: 1 1 100%;
  }
  .page-index-review-fabet .faq-question {
    padding: 15px 20px;
  }
  .page-index-review-fabet .faq-question h3 {
    font-size: 1.1em;
  }
  .page-index-review-fabet .faq-toggle {
    font-size: 1.8em;
  }
  .page-index-review-fabet .faq-answer {
    padding: 0 20px;
  }
  .page-index-review-fabet .faq-item.active .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-index-review-fabet .hero-review-section {
    padding: 40px 10px;
  }
  .page-index-review-fabet .hero-review-content h1 {
    font-size: 1.7em;
  }
  .page-index-review-fabet .cta-button,
  .page-index-review-fabet .btn-primary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-review-fabet .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-index-review-fabet .game-card {
    padding: 20px;
  }
  .page-index-review-fabet .promo-list li {
    padding: 20px;
  }
  .page-index-review-fabet .step-item {
    padding: 25px;
  }
  .page-index-review-fabet .faq-question h3 {
    font-size: 1em;
  }
  .page-index-review-fabet .faq-toggle {
    font-size: 1.5em;
  }
}