.page-index-review-fabet {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #00CED1; /* Teal */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f5f5f5;
  --background-dark: #222222;
  --border-color: #e0e0e0;
  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(--background-light);
}

.page-index-review-fabet h1,
.page-index-review-fabet h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2.5em;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-index-review-fabet h2 {
  font-size: 2em;
  color: var(--text-color-dark);
}

.page-index-review-fabet h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.5em;
}

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

.page-index-review-fabet ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  display: inline-block; /* For centering block list */
}

.page-index-review-fabet ul li {
  background: var(--background-light);
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 5px;
  border-left: 5px solid var(--primary-color);
  font-size: 1em;
  color: var(--text-color-dark);
}

.page-index-review-fabet-cta-button,
.page-index-review-fabet-secondary-button {
  display: inline-block;
  padding: 15px 30px;
  margin-top: 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-index-review-fabet-cta-button {
  background: linear-gradient(90deg, var(--primary-color), #FFC107);
  color: var(--text-color-dark);
  border: 2px solid var(--primary-color);
}

.page-index-review-fabet-cta-button:hover {
  background: linear-gradient(90deg, #FFC107, var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

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

.page-index-review-fabet-secondary-button:hover {
  background: #00B2B2;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* 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(--background-dark), #3a3a3a);
  overflow: hidden;
}

.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;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.page-index-review-fabet-hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

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

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

/* Game Focus 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-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-fabet-game-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.page-index-review-fabet-game-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-index-review-fabet-game-item h3 {
  color: var(--primary-color);
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-index-review-fabet-game-item p {
  font-size: 1em;
  color: #555555;
}

.page-index-review-fabet-game-item ul {
  margin-top: 15px;
  list-style: disc;
  padding-left: 20px;
}

.page-index-review-fabet-game-item ul li {
  background: none;
  border-left: none;
  padding: 5px 0;
  margin-bottom: 5px;
  font-size: 0.95em;
  color: #666;
}

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

.page-index-review-fabet-category-item {
  background: var(--text-color-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index-review-fabet-category-item:hover {
  transform: translateY(-5px);
}

.page-index-review-fabet-category-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-index-review-fabet-category-item h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
}

.page-index-review-fabet-category-item p {
  font-size: 0.95em;
  color: #666;
}

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

.page-index-review-fabet-promo-item {
  background: var(--text-color-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: left;
  border-top: 5px solid var(--primary-color);
}

.page-index-review-fabet-promo-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-index-review-fabet-promo-item p {
  font-size: 0.95em;
  color: #555;
}

/* Mobile Section */
.page-index-review-fabet-mobile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-fabet-mobile-content img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-index-review-fabet-mobile-content ul {
  text-align: left;
  width: 100%;
  max-width: 600px;
  margin: 0;
}

/* Pros & Cons Section */
.page-index-review-fabet-pros-cons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-fabet-pros,
.page-index-review-fabet-cons {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-index-review-fabet-pros h3 {
  color: #28a745; /* Green for pros */
  border-bottom: 2px solid #28a745;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.page-index-review-fabet-cons h3 {
  color: #dc3545; /* Red for cons */
  border-bottom: 2px solid #dc3545;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.page-index-review-fabet-pros ul li,
.page-index-review-fabet-cons ul li {
  background: none;
  border-left: none;
  padding: 8px 0;
  margin-bottom: 5px;
  font-size: 1em;
  color: #555;
}

.page-index-review-fabet-pros ul li::before {
  content: '✔';
  color: #28a745;
  margin-right: 10px;
}

.page-index-review-fabet-cons ul li::before {
  content: '✖';
  color: #dc3545;
  margin-right: 10px;
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

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

.faq-question:hover {
  background: var(--background-light);
}

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

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px;
  border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer p {
  margin-bottom: 0;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-fabet-hero-content h1 {
    font-size: 3em;
  }
  .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;
  }
}

@media (max-width: 768px) {
  .page-index-review-fabet-section {
    padding: 40px 0;
  }
  .page-index-review-fabet-hero-section {
    padding: 60px 15px 30px;
  }
  .page-index-review-fabet-hero-content h1 {
    font-size: 2.5em;
  }
  .page-index-review-fabet-hero-content p {
    font-size: 1.1em;
  }
  .page-index-review-fabet-cta-button,
  .page-index-review-fabet-secondary-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-index-review-fabet-game-grid,
  .page-index-review-fabet-game-category-grid,
  .page-index-review-fabet-promo-grid,
  .page-index-review-fabet-pros-cons {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-review-fabet-game-item,
  .page-index-review-fabet-category-item,
  .page-index-review-fabet-promo-item,
  .page-index-review-fabet-pros,
  .page-index-review-fabet-cons {
    padding: 20px;
  }
  .page-index-review-fabet-mobile-content {
    flex-direction: column;
  }
  .page-index-review-fabet-mobile-content img {
    max-width: 100%;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-review-fabet h1 {
    font-size: 2em;
  }
  .page-index-review-fabet h2 {
    font-size: 1.6em;
  }
  .page-index-review-fabet-hero-content p {
    font-size: 1em;
  }
  .page-index-review-fabet-cta-button,
  .page-index-review-fabet-secondary-button {
    padding: 10px 20px;
    font-size: 0.85em;
  }
}