/* style/index-review-fabet.css */
:root {
  --primary-color: #0A2463;
  --secondary-color: #E3B23C;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #0a0a0a;
  --background-light: #f1f3f5;
  --card-background: #ffffff;
  --border-color: #e0e0e0;
  --button-hover-darken: #071a47;
  --button-hover-lighten: #d1a52f;
}

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

/* Padding for fixed header */
.page-index-review-fabet__hero-banner {
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
  padding-bottom: 60px;
}

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

.page-index-review-fabet__main-title {
  font-size: 42px;
  font-weight: bold;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 20px;
}

.page-index-review-fabet__hero-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-light);
}

.page-index-review-fabet__cta-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet__btn-primary {
  background: var(--secondary-color);
  color: var(--text-dark);
}

.page-index-review-fabet__btn-primary:hover {
  background: var(--button-hover-lighten);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet__btn-secondary {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-index-review-fabet__btn-secondary:hover {
  background: var(--button-hover-darken);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet__text-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-review-fabet__text-link:hover {
  color: var(--button-hover-lighten);
  text-decoration: underline;
}

.page-index-review-fabet__section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.page-index-review-fabet__section-description {
  font-size: 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-dark);
}

.page-index-review-fabet__card {
  background: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
  color: var(--text-dark);
}

.page-index-review-fabet__intro-section,
.page-index-review-fabet__promotions-section,
.page-index-review-fabet__blog-section {
  padding: 60px 0;
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-index-review-fabet__games-section,
.page-index-review-fabet__detailed-review-section,
.page-index-review-fabet__faq-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-index-review-fabet__intro-section .page-index-review-fabet__card h2,
.page-index-review-fabet__intro-section .page-index-review-fabet__card h3 {
  color: var(--primary-color);
}

.page-index-review-fabet__intro-section .page-index-review-fabet__card p {
  color: var(--text-dark);
}

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

.page-index-review-fabet__feature-item {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  background: #fdfdfd;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-review-fabet__feature-icon {
  max-width: 120px; /* Increased size for icons */
  height: auto;
  margin-bottom: 15px;
}

.page-index-review-fabet__feature-item h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-index-review-fabet__feature-item p {
  font-size: 15px;
  color: var(--text-dark);
}

.page-index-review-fabet__call-to-action-text {
  text-align: center;
  margin-top: 40px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
}

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

.page-index-review-fabet__game-card {
  background: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

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

.page-index-review-fabet__game-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-index-review-fabet__game-description {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

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