.page-index-review-fabet {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
}

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

.page-index-review-fabet .bg-light {
  background-color: #f8f9fa;
}

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

.page-index-review-fabet h1,
.page-index-review-fabet h2,
.page-index-review-fabet h3 {
  color: var(--primary-color, #1A2B3C);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-index-review-fabet h1 {
  font-size: 3em;
  color: #FFFFFF;
}

.page-index-review-fabet h2 {
  font-size: 2.5em;
}

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

.page-index-review-fabet p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-index-review-fabet ul,
.page-index-review-fabet ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.page-index-review-fabet li {
  margin-bottom: 8px;
}

.page-index-review-fabet .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--auxiliary-color, #FFD700);
  color: var(--primary-color, #1A2B3C);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-review-fabet .cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet .cta-small {
  padding: 10px 25px;
  font-size: 1em;
  margin-top: 20px;
}

.page-index-review-fabet .text-link {
  color: var(--primary-color, #1A2B3C);
  text-decoration: underline;
  font-weight: bold;
}

.page-index-review-fabet .text-link:hover {
  color: var(--auxiliary-color, #FFD700);
}

/* Hero Section */
.page-index-review-fabet-hero {
  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(--primary-color, #1A2B3C) 0%, #3a5c7e 100%);
  color: #ffffff;
}

.page-index-review-fabet-hero .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 .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

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

.page-index-review-fabet-hero .hero-content h1 {
  margin-bottom: 20px;
  font-size: 3.5em;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-fabet-hero .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* Content Image */
.page-index-review-fabet .content-image {
  text-align: center;
  margin: 40px 0;
}

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

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

.page-index-review-fabet .feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-fabet .feature-item h3 {
  color: var(--primary-color, #1A2B3C);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index-review-fabet .feature-item p {
  font-size: 1em;
  color: #555555;
  text-align: center;
}

.page-index-review-fabet .feature-item .feature-link {
  color: var(--primary-color, #1A2B3C);
  text-decoration: none;
}

.page-index-review-fabet .feature-item .feature-link:hover {
  text-decoration: underline;
  color: var(--auxiliary-color, #FFD700);
}

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

.page-index-review-fabet .game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-fabet .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-review-fabet .game-card h3 {
  font-size: 1.4em;
  margin: 20px 15px 10px;
  text-align: left;
}

.page-index-review-fabet .game-card p {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px 20px;
  text-align: left;
}

.page-index-review-fabet .game-card .card-link {
  color: var(--primary-color, #1A2B3C);
  text-decoration: none;
}

.page-index-review-fabet .game-card .card-link:hover {
  text-decoration: underline;
  color: var(--auxiliary-color, #FFD700);
}

/* Promotions */
.page-index-review-fabet .promo-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 20px;
}

.page-index-review-fabet .promo-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-index-review-fabet .promo-list li strong {
  color: var(--primary-color, #1A2B3C);
}

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

.page-index-review-fabet .pros,
.page-index-review-fabet .cons {
  flex: 1;
  min-width: 300px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-index-review-fabet .pros h3 {
  color: #28a745; /* Green for pros */
  text-align: center;
}

.page-index-review-fabet .cons h3 {
  color: #dc3545; /* Red for cons */
  text-align: center;
}

.page-index-review-fabet .pros ul,
.page-index-review-fabet .cons ul {
  list-style-type: disc;
  padding-left: 20px;
}

.page-index-review-fabet .pros li,
.page-index-review-fabet .cons li {
  margin-bottom: 8px;
  color: #333333;
}

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

.page-index-review-fabet .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #ffffff;
  overflow: hidden;
}

.page-index-review-fabet .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fdfdfd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-index-review-fabet .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color, #1A2B3C);
  text-align: left;
}

.page-index-review-fabet .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--auxiliary-color, #FFD700);
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-index-review-fabet .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color, #1A2B3C);
}

.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 20px;
  background-color: #f9f9f9;
}

.page-index-review-fabet .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px;
  border-top: 1px solid #eeeeee;
}

.page-index-review-fabet .faq-answer p {
  margin: 0;
  color: #555555;
}

/* Conclusion */
.page-index-review-fabet-conclusion .cta-button {
  display: block;
  margin: 40px auto 0;
  max-width: 350px;
}

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

@media (max-width: 768px) {
  .page-index-review-fabet .section-padding {
    padding: 40px 0;
  }
  .page-index-review-fabet-hero {
    padding: 60px 15px;
  }
  .page-index-review-fabet-hero .hero-content h1 {
    font-size: 2.5em;
  }
  .page-index-review-fabet-hero .hero-content p {
    font-size: 1em;
  }
  .page-index-review-fabet .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index-review-fabet h1 {
    font-size: 2.2em;
  }
  .page-index-review-fabet h2 {
    font-size: 1.8em;
  }
  .page-index-review-fabet h3 {
    font-size: 1.4em;
  }
  .page-index-review-fabet .feature-grid,
  .page-index-review-fabet .game-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-review-fabet .flex-container {
    flex-direction: column;
  }
  .page-index-review-fabet .pros,
  .page-index-review-fabet .cons {
    min-width: unset;
  }
  .page-index-review-fabet .faq-question h3 {
    font-size: 1.1em;
  }
  .page-index-review-fabet .faq-toggle {
    font-size: 1.5em;
  }
  .page-index-review-fabet .faq-answer {
    padding: 0 15px;
  }
  .page-index-review-fabet .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-review-fabet-hero .hero-content h1 {
    font-size: 2em;
  }
  .page-index-review-fabet .cta-button {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-index-review-fabet .container {
    padding: 0 15px;
  }
  .page-index-review-fabet h1 {
    font-size: 1.8em;
  }
  .page-index-review-fabet h2 {
    font-size: 1.6em;
  }
  .page-index-review-fabet h3 {
    font-size: 1.2em;
  }
  .page-index-review-fabet .faq-question h3 {
    font-size: 1em;
  }
}