:root {
  --primary-color: #007BFF; /* Deep Ocean Blue */
  --secondary-color: #28A745; /* Vibrant Green */
  --accent-color: #FFD700; /* Gold */
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --bg-dark-body: #0a0a0a;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --card-bg-light: #ffffff;
  --border-color: #e0e0e0;
}

/* Base styles for the page content, considering dark body background */
.page-index-review-fabet {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-light); /* Light text for dark body background */
  background-color: var(--bg-dark-body); /* Ensure main content area respects body background */
  line-height: 1.7;
  padding-top: 120px; /* Desktop: Adjust for fixed header */
}

/* Responsive padding-top for mobile */
@media (max-width: 768px) {
  .page-index-review-fabet {
    padding-top: 100px !important; /* Mobile: Adjust for fixed header */
  }
}

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

@media (max-width: 768px) {
  .page-index-review-fabet__container {
    padding: 15px;
  }
}

.page-index-review-fabet__main-title {
  font-size: 38px;
  color: var(--accent-color); /* Gold for main title */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-review-fabet__main-title a {
  color: var(--accent-color);
  text-decoration: none;
}

.page-index-review-fabet__main-title a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-index-review-fabet__main-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.page-index-review-fabet__intro-text {
  font-size: 17px;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-index-review-fabet__intro-text a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-index-review-fabet__intro-text a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-index-review-fabet__intro-text {
    font-size: 15px;
    margin-bottom: 30px;
  }
}

.page-index-review-fabet__section-title {
  font-size: 30px;
  color: var(--primary-color); /* Primary color for section titles */
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-index-review-fabet__section-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-index-review-fabet__section-title a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-index-review-fabet__section-title {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}

.page-index-review-fabet__sub-title {
  font-size: 22px;
  color: var(--secondary-color); /* Secondary color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .page-index-review-fabet__sub-title {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
}

.page-index-review-fabet p {
  font-size: 17px;
  margin-bottom: 20px;
  color: #e0e0e0; /* Slightly lighter than white for body text */
}

.page-index-review-fabet p a {
  color: var(--accent-color); /* Gold for links in paragraphs */
  text-decoration: none;
  font-weight: bold;
}

.page-index-review-fabet p a:hover {
  text-decoration: underline;
}

/* Image styles */
.page-index-review-fabet__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

@media (max-width: 768px) {
  .page-index-review-fabet__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }
}

/* CTA Buttons */
.page-index-review-fabet__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet__cta-button--primary {
  background: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--primary-color);
}

.page-index-review-fabet__cta-button--primary:hover {
  background: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet__cta-button--secondary {
  background: var(--secondary-color);
  color: var(--text-color-light);
  border: 2px solid var(--secondary-color);
}

.page-index-review-fabet__cta-button--secondary:hover {
  background: #1e7e34;
  border-color: #1e7e34;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet__cta-button--small {
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .page-index-review-fabet__cta-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    margin-top: 15px;
  }
  .page-index-review-fabet__cta-button--small {
    padding: 8px 15px;
    font-size: 14px;
  }
}

/* Review Summary */
.page-index-review-fabet__review-summary {
  background: var(--card-bg-dark); /* Dark card background */
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-review-fabet__review-summary .page-index-review-fabet__section-title {
  color: var(--accent-color);
  margin-top: 0;
}

.page-index-review-fabet__review-summary p {
  color: #e0e0e0;
  font-size: 17px;
}

.page-index-review-fabet__summary-image {
  max-width: 600px;
  margin: 20px auto 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .page-index-review-fabet__review-summary {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
}

/* Overview Section (Module 2 adapted) */
.page-index-review-fabet__overview-section {
  background-color: var(--bg-dark-body);
  padding: 60px 0;
}

/* Games Section (Module 3) */
.page-index-review-fabet__games-section {
  background-color: #1a1a1a; /* Slightly lighter dark background */
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-review-fabet__game-category {
  background: var(--card-bg-dark);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-review-fabet__game-category .page-index-review-fabet__sub-title {
  text-align: center;
  margin-top: 0;
  color: var(--secondary-color);
}

.page-index-review-fabet__game-category p {
  text-align: justify;
  font-size: 16px;
  color: #cccccc;
}

@media (max-width: 768px) {
  .page-index-review-fabet__game-category {
    padding: 20px;
    margin-bottom: 20px;
  }
}

/* Promotions Section (Module 4) */
.page-index-review-fabet__promotions-section {
  background-color: var(--bg-dark-body);
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-review-fabet__promotion-card {
  background: var(--card-bg-dark);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-review-fabet__promotion-card .page-index-review-fabet__promo-image {
  max-width: 400px;
  margin: 0 auto 20px auto;
  border-radius: 8px;
}

.page-index-review-fabet__promotion-card .page-index-review-fabet__sub-title {
  color: var(--accent-color);
  margin-top: 0;
}

.page-index-review-fabet__promotion-card p {
  font-size: 16px;
  color: #cccccc;
}

@media (max-width: 768px) {
  .page-index-review-fabet__promotion-card {
    padding: 20px;
    margin-bottom: 20px;
  }
}

/* News Section (Module 5) */
.page-index-review-fabet__news-section {
  background-color: #1a1a1a;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 768px) {
  .page-index-review-fabet__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.page-index-review-fabet__news-card {
  background: var(--card-bg-dark);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-review-fabet__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}