/* style/index-review-fabet.css */
:root {
    --primary-color: #0A2463; /* Deep Blue */
    --secondary-color: #E34234; /* Vibrant Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f7f6;
    --bg-dark: #0A2463;
    --border-color: #e0e0e0;
}

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

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

.page-index-review-fabet .section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-review-fabet .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-index-review-fabet p {
    margin-bottom: 15px;
    font-size: 16px;
}

/* 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: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color), #1A3A7A);
    color: var(--text-light);
}

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

.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%;
    padding: 0 20px;
}

.page-index-review-fabet .hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.2;
}

.page-index-review-fabet .hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

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

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

/* Section Intro */
.page-index-review-fabet .section-intro {
    padding: 60px 0;
    background-color: var(--bg-light);
}

/* Feature Grid */
.page-index-review-fabet .section-features {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

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

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

.page-index-review-fabet .feature-heading {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Games Section */
.page-index-review-fabet .section-games {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-index-review-fabet .game-category {
    margin-bottom: 60px;
}

.page-index-review-fabet .game-category-title {
    font-size: 30px;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-index-review-fabet .game-category-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

.page-index-review-fabet .game-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.page-index-review-fabet .game-card.reverse {
    flex-direction: row-reverse;
}

.page-index-review-fabet .game-image {
    width: 50%;
    height: 300px;
    object-fit: cover;
}

.page-index-review-fabet .game-content {
    width: 50%;
    padding: 30px;
}

.page-index-review-fabet .game-content p {
    font-size: 17px;
    margin-bottom: 20px;
}

.page-index-review-fabet .game-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-index-review-fabet .game-button:hover {
    background: #1A3A7A;
}

/* Promotions Section */
.page-index-review-fabet .section-promotions {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-index-review-fabet .promo-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-index-review-fabet .promo-heading {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.page-index-review-fabet .promo-button:hover {
    background: #FF6B6B;
}

/* Guide Section */
.page-index-review-fabet .section-guide {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-index-review-fabet .guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-index-review-fabet .step-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-review-fabet .step-heading {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.page-index-review-fabet .guide-button:hover {
    background: #1A3A7A;
}

/* Pros & Cons Section */
.page-index-review-fabet .section-pros-cons {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-index-review-fabet .pros-cons-wrapper {
    display: flex;
    gap: 30px;
}

.page-index-review-fabet .pros-card, .page-index-review-fabet .cons-card {
    flex: 1;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-index-review-fabet .card-heading {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
}

.page-index-review-fabet .pros-card .card-heading {
    color: #28a745; /* Green for Pros */
}

.page-index-review-fabet .cons-card .card-heading {
    color: var(--secondary-color); /* Red for Cons */
}

.page-index-review-fabet .pros-card ul, .page-index-review-fabet .cons-card ul {
    list-style: none;
    padding: 0;
}

.page-index-review-fabet .pros-card li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.page-index-review-fabet .pros-card li::before {
    content: '✅';
    position: absolute;
    left: 0;
    font-size: 18px;
}

.page-index-review-fabet .cons-card li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.page-index-review-fabet .cons-card li::before {
    content: '❌';
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* FAQ Section */
.page-index-review-fabet .section-faq {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-index-review-fabet .faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: var(--primary-color);
}

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f9f9f9;
  color: var(--text-dark);
  border-top: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 5px 5px;
}

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

/* Conclusion Section */
.page-index-review-fabet .section-conclusion {
    padding: 60px 0;
    text-align: center;
    background-color: #ffffff;
}

.page-index-review-fabet .final-cta {
    margin-top: 40px;
    font-size: 20px;
    padding: 18px 45px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-review-fabet .hero-title {
        font-size: 40px;
    }
    .page-index-review-fabet .hero-description {
        font-size: 18px;
    }
    .page-index-review-fabet .section-title {
        font-size: 30px;
    }
    .page-index-review-fabet .game-card {
        flex-direction: column;
    }
    .page-index-review-fabet .game-card.reverse {
        flex-direction: column;
    }
    .page-index-review-fabet .game-image,
    .page-index-review-fabet .game-content {
        width: 100%;
    }
    .page-index-review-fabet .game-image {
        height: 250px;
    }
    .page-index-review-fabet .pros-cons-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-index-review-fabet .hero-section {
        padding: 40px 15px;
    }
    .page-index-review-fabet .hero-title {
        font-size: 32px;
    }
    .page-index-review-fabet .hero-description {
        font-size: 16px;
    }
    .page-index-review-fabet .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    .page-index-review-fabet .section-title {
        font-size: 26px;
    }
    .page-index-review-fabet .feature-item, .page-index-review-fabet .promo-item, .page-index-review-fabet .step-item {
        padding: 20px;
    }
    .page-index-review-fabet .game-content {
        padding: 20px;
    }
    .faq-question {
      flex-wrap: wrap;
    }
    .faq-question h3 {
      width: calc(100% - 40px);
      margin-bottom: 5px;
    }
    .faq-toggle {
      position: absolute;
      right: 15px;
      top: 15px;
    }
}

@media (max-width: 480px) {
    .page-index-review-fabet .hero-title {
        font-size: 28px;
    }
    .page-index-review-fabet .hero-description {
        font-size: 14px;
    }
    .page-index-review-fabet .section-title {
        font-size: 22px;
    }
    .page-index-review-fabet .feature-icon {
        width: 80px;
        height: 80px;
    }
    .page-index-review-fabet .feature-heading {
        font-size: 20px;
    }
    .page-index-review-fabet .game-image {
        height: 200px;
    }
    .page-index-review-fabet .promo-image {
        height: 150px;
    }
    .page-index-review-fabet .card-heading {
        font-size: 22px;
    }
    .faq-question h3 {
      font-size: 16px;
    }
    .faq-toggle {
      font-size: 20px;
    }
}