.page-index-review-fabet {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-light: #F0F2F5;
  --text-dark: #1A202C;
  --bg-dark: #1A202C;
  --bg-light: #FFFFFF;
  --accent-color-hover: #E0B500;
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  background-color: var(--bg-dark);
}

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

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

.page-index-review-fabet-section:nth-of-type(even) {
  background-color: #2D3748; /* Slightly lighter dark background for contrast */
}

.page-index-review-fabet h1,
.page-index-review-fabet h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 2.5em;
  font-weight: bold;
}

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

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

.page-index-review-fabet-highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

/* 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;
  padding: 80px 20px 40px;
  background: linear-gradient(135deg, var(--primary-color), #000000);
}

.page-index-review-fabet-hero-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-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 900px; /* Adjust max-width for better visual */
}

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

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

.page-index-review-fabet-hero-content h1 {
  font-size: 3.5em;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-fabet-hero-content p {
  font-size: 1.3em;
  color: var(--text-light);
  max-width: 800px;
  margin: 20px auto 30px;
}

.page-index-review-fabet-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

/* Card Styles */
.page-index-review-fabet-card,
.page-index-review-fabet-info-card,
.page-index-review-fabet-promo-card,
.page-index-review-fabet-blog-card {
  background-color: #2D3748;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-index-review-fabet-card:hover,
.page-index-review-fabet-info-card:hover,
.page-index-review-fabet-promo-card:hover,
.page-index-review-fabet-blog-card:hover {
  transform: translateY(-5px);
}

.page-index-review-fabet-card h3,
.page-index-review-fabet-info-card h3,
.page-index-review-fabet-promo-card h3,
.page-index-review-fabet-blog-card h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-index-review-fabet-info-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Quick Links */
.page-index-review-fabet-links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-index-review-fabet-link-button {
  display: inline-block;
  padding: 12px 25px;
  background: #3A475C; /* Darker shade for link buttons */
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: normal;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-index-review-fabet-image-full-width {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  margin: 40px auto 0;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Game Categories */
.page-index-review-fabet-game-category {
  background-color: #2D3748;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet-game-category h3 {
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.8em;
}

.page-index-review-fabet-game-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 25px auto 0;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

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

.page-index-review-fabet-promo-card h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
}

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

/* FAQ Section */
.page-index-review-fabet-faq-list {
  margin-top: 40px;
  text-align: left;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #3A475C;
  border-radius: 8px;
  overflow: hidden;
  background-color: #2D3748;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #3A475C;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #4A5568;
}

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

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px;
}

.page-index-review-fabet-faq-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
}

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

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

.page-index-review-fabet-blog-card {
  text-align: left;
}

.page-index-review-fabet-blog-card h3 a {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 1.4em;
  margin-bottom: 10px;
  display: block;
}

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

.page-index-review-fabet-blog-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-index-review-fabet-blog-date {
  display: block;
  font-size: 0.9em;
  color: #A0AEC0;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-fabet-hero-content h1 {
    font-size: 3em;
  }
  .page-index-review-fabet h2 {
    font-size: 2em;
  }
  .page-index-review-fabet h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-index-review-fabet-hero-section {
    padding: 60px 15px 30px;
  }
  .page-index-review-fabet-hero-content h1 {
    font-size: 2.2em;
  }
  .page-index-review-fabet-hero-content p {
    font-size: 1.1em;
  }
  .page-index-review-fabet-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index-review-fabet-section {
    padding: 40px 0;
  }
  .page-index-review-fabet-container {
    padding: 15px;
  }
  .page-index-review-fabet h2 {
    font-size: 1.8em;
  }
  .page-index-review-fabet h3 {
    font-size: 1.3em;
  }
  .page-index-review-fabet p {
    font-size: 1em;
  }
  .page-index-review-fabet-grid-2-cols,
  .page-index-review-fabet-grid-3-cols,
  .page-index-review-fabet-promotions-grid,
  .page-index-review-fabet-blog-grid {
    grid-template-columns: 1fr;
  }
  .faq-question {
    padding: 15px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-answer {
    padding: 0 15px;
  }
  .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-review-fabet-hero-content h1 {
    font-size: 1.8em;
  }
  .page-index-review-fabet-hero-content p {
    font-size: 0.95em;
  }
  .page-index-review-fabet-cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-index-review-fabet h2 {
    font-size: 1.5em;
  }
  .page-index-review-fabet h3 {
    font-size: 1.2em;
  }
  .page-index-review-fabet-links-grid {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-review-fabet-link-button {
    width: 100%;
  }
}