/* style/index-review-fabet.css */
:root {
    --primary-color: #0056B3; /* Deep Blue */
    --secondary-color: #FFD700; /* Bright Gold */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f7fa;
    --bg-dark: #1a2a3a;
    --border-color: #e0e0e0;
}

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

.page-index-review-fabet h1, .page-index-review-fabet h2, .page-index-review-fabet h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-index-review-fabet h1 {
    font-size: 3em;
    text-align: center;
    color: var(--text-light);
}

.page-index-review-fabet h2 {
    font-size: 2.5em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    position: relative;
}

.page-index-review-fabet h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-index-review-fabet h3 {
    font-size: 1.8em;
    color: var(--primary-color);
}

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

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

/* 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-color: var(--bg-dark);
    overflow: hidden;
}

.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%;
    height: 500px; /* Fixed height for visual impact */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.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 {
    color: var(--text-light);
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-fabet-hero .hero-content p {
    color: var(--text-light);
    font-size: 1.3em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-index-review-fabet .cta-button:hover {
    background: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet .large-button {
    padding: 20px 50px;
    font-size: 1.5em;
}

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

.page-index-review-fabet-intro .cta-banner {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, var(--primary-color), #007bff);
    border-radius: 10px;
    margin-top: 40px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    color: var(--text-light);
}

.page-index-review-fabet-intro .cta-banner .banner-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet-intro .cta-banner .banner-content h3 {
    color: var(--secondary-color);
    font-size: 2em;
    margin-bottom: 10px;
}

.page-index-review-fabet-intro .cta-banner .banner-content p {
    color: var(--text-light);
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-index-review-fabet-intro .cta-banner .cta-button {
    background: var(--secondary-color);
    color: var(--primary-color);
}

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

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

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

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

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

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

.page-index-review-fabet-advantages .advantage-item p {
    font-size: 1em;
    color: var(--text-dark);
}

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

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

.page-index-review-fabet-games .game-card {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-fabet-games .game-card .game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-index-review-fabet-games .game-card h3 {
    font-size: 1.6em;
    padding: 15px 20px 0;
    color: var(--primary-color);
}

.page-index-review-fabet-games .game-card h3 a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.page-index-review-fabet-games .game-card h3 a:hover {
    color: var(--secondary-color);
}

.page-index-review-fabet-games .game-card p {
    padding: 0 20px 20px;
    font-size: 1em;
    color: var(--text-dark);
}

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

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

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

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

.page-index-review-fabet-promotions .promo-item .promo-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

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

.page-index-review-fabet-promotions .promo-item p {
    font-size: 1em;
    color: var(--text-dark);
}

.page-index-review-fabet .cta-center {
    text-align: center;
    margin-top: 50px;
}

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

.page-index-review-fabet-transactions ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-index-review-fabet-transactions ul li {
    margin-bottom: 10px;
}

.page-index-review-fabet-transactions h3 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Mobile Section */
.page-index-review-fabet-mobile {
    padding: 60px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-index-review-fabet-mobile h2, .page-index-review-fabet-mobile h3 {
    color: var(--secondary-color);
}

.page-index-review-fabet-mobile p {
    color: var(--text-light);
}

.page-index-review-fabet-mobile .mobile-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-index-review-fabet-mobile .mobile-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet-mobile .mobile-text {
    flex: 2;
    min-width: 300px;
}

.page-index-review-fabet-mobile .app-download-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-review-fabet-mobile .app-download-links .cta-button {
    background: var(--primary-color);
    color: var(--text-light);
}

.page-index-review-fabet-mobile .app-download-links .cta-button:hover {
    background: #004085;
}

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

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

.page-index-review-fabet-faq .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-index-review-fabet-faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fff;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--primary-color);
    transition: background-color 0.3s ease;
}

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

.page-index-review-fabet-faq .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--primary-color);
}

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

.page-index-review-fabet-faq .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-index-review-fabet-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 1.1em;
}

.page-index-review-fabet-faq .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 15px 25px 25px;
}

.page-index-review-fabet-faq .faq-answer p {
    margin-bottom: 0;
}

/* Conclusion Section */
.page-index-review-fabet-conclusion {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.page-index-review-fabet-conclusion h2 {
    color: var(--secondary-color);
}

.page-index-review-fabet-conclusion p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-fabet-hero .hero-image {
        height: 400px;
    }
    .page-index-review-fabet-hero .hero-content h1 {
        font-size: 3em;
    }
    .page-index-review-fabet-hero .hero-content p {
        font-size: 1.2em;
    }
    .page-index-review-fabet-intro .cta-banner .banner-image {
        width: 250px;
        height: 180px;
    }
    .page-index-review-fabet-intro .cta-banner .banner-content h3 {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-index-review-fabet h1 {
        font-size: 2.5em;
    }
    .page-index-review-fabet h2 {
        font-size: 2em;
    }
    .page-index-review-fabet h3 {
        font-size: 1.5em;
    }
    .page-index-review-fabet p {
        font-size: 1em;
    }
    .page-index-review-fabet-hero {
        padding: 60px 15px;
    }
    .page-index-review-fabet-hero .hero-image {
        height: 300px;
        margin-bottom: 30px;
    }
    .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 .large-button {
        padding: 15px 40px;
        font-size: 1.2em;
    }
    .page-index-review-fabet-intro .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .page-index-review-fabet-intro .cta-banner .banner-image {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    .page-index-review-fabet-intro .cta-banner .banner-content h3 {
        font-size: 1.5em;
    }
    .page-index-review-fabet-advantages .advantages-grid,
    .page-index-review-fabet-games .game-categories,
    .page-index-review-fabet-promotions .promo-grid {
        grid-template-columns: 1fr;
    }
    .page-index-review-fabet-mobile .mobile-content {
        flex-direction: column;
        gap: 30px;
    }
    .page-index-review-fabet-mobile .mobile-image {
        max-width: 100%;
    }
    .page-index-review-fabet-faq .faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-index-review-fabet-faq .faq-question h3 {
        font-size: 1.1em;
    }
    .page-index-review-fabet-faq .faq-answer {
        padding: 0 20px;
    }
    .page-index-review-fabet-faq .faq-item.active .faq-answer {
        padding: 10px 20px 20px;
    }
    .page-index-review-fabet-mobile .app-download-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-index-review-fabet h1 {
        font-size: 2em;
    }
    .page-index-review-fabet h2 {
        font-size: 1.8em;
    }
    .page-index-review-fabet-hero .hero-image {
        height: 250px;
    }
    .page-index-review-fabet-hero .hero-content h1 {
        font-size: 2em;
    }
    .page-index-review-fabet-hero .hero-content p {
        font-size: 0.9em;
    }
    .page-index-review-fabet .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-index-review-fabet .large-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-index-review-fabet-intro .cta-banner .banner-content h3 {
        font-size: 1.3em;
    }
    .page-index-review-fabet-intro .cta-banner .banner-content p {
        font-size: 0.9em;
    }
    .page-index-review-fabet-faq .faq-question h3 {
        font-size: 1em;
    }
    .page-index-review-fabet-faq .faq-toggle {
        font-size: 1.5em;
    }
}