/* style/index-review-fabet.css */

:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1E90FF; /* Dodger Blue */
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #2c3e50;
    --border-color: #e0e0e0;
}

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

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

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

.page-index-review-fabet-section:nth-of-type(even) {
    background-color: #f0f0f0;
}

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

.page-index-review-fabet h1 {
    font-size: 2.8em;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet h2 {
    font-size: 2.2em;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 15px;
    display: inline-block;
    margin: 0 auto 40px auto;
    color: var(--text-color-dark);
}

.page-index-review-fabet h3 {
    font-size: 1.8em;
    color: var(--text-color-dark);
    text-align: left;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.page-index-review-fabet p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
}

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

.page-index-review-fabet li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-index-review-fabet a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index-review-fabet a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Hero Section */
.page-index-review-fabet-hero {
    background: linear-gradient(135deg, var(--secondary-color), #007bff);
    color: var(--text-color-light);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-review-fabet-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.page-index-review-fabet-hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

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

.page-index-review-fabet-hero-content p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    color: #e0e0e0;
}

.page-index-review-fabet-hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin-top: 30px;
}

.page-index-review-fabet-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-index-review-fabet-cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-color-dark);
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-index-review-fabet-cta-button:hover {
    background: #FFC107; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: var(--text-color-dark);
    text-decoration: none;
}

.page-index-review-fabet-centered-cta {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Game Categories */
.page-index-review-fabet-game-category {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.page-index-review-fabet-game-category h3 {
    color: var(--secondary-color);
    text-align: left;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
    margin-bottom: 20px;
}

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

/* Promotions */
.page-index-review-fabet-promotions .page-index-review-fabet-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-top: 20px;
}

.page-index-review-fabet-promotion-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-fabet-promotion-card h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

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

.page-index-review-fabet-promotion-card p {
    font-size: 1em;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-index-review-fabet-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-color-light);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9em;
}

.page-index-review-fabet-button:hover {
    background: #1565C0; /* Darker blue */
    transform: translateY(-2px);
    color: var(--text-color-light);
    text-decoration: none;
}

.page-index-review-fabet-note {
    font-style: italic;
    text-align: center;
    margin-top: 40px;
    color: #666;
}

/* Guide Section */
.page-index-review-fabet-guide h3 {
    color: var(--secondary-color);
    text-align: left;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-index-review-fabet-guide ol li strong {
    color: var(--primary-color);
}

/* Security & Support */
.page-index-review-fabet-security-support h3 {
    color: var(--secondary-color);
    text-align: left;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-index-review-fabet-security-support img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 20px auto 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Pros & Cons */
.page-index-review-fabet-pros-cons .page-index-review-fabet-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.page-index-review-fabet-pros,
.page-index-review-fabet-cons {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

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

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

.page-index-review-fabet-pros ul li::before {
    content: '✅';
    margin-right: 10px;
}

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

/* FAQ */
.page-index-review-fabet-faq .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}

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

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

.page-index-review-fabet-faq .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--text-color-dark);
    text-align: left;
    border: none;
    padding: 0;
}

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

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

.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: #f9f9f9;
    color: #555;
}

.page-index-review-fabet-faq .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding: 15px 25px;
}

.page-index-review-fabet-faq .faq-answer p {
    margin: 0;
    font-size: 1em;
    line-height: 1.7;
}

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

.page-index-review-fabet-article-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-index-review-fabet-article-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-index-review-fabet-article-card h3 {
    font-size: 1.4em;
    margin: 20px 20px 10px 20px;
    text-align: left;
    border: none;
    padding: 0;
}

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

.page-index-review-fabet-article-card h3 a:hover {
    color: var(--primary-color);
}

.page-index-review-fabet-article-card p {
    font-size: 0.95em;
    color: #666;
    margin: 0 20px 15px 20px;
    flex-grow: 1;
}

.page-index-review-fabet-article-card span {
    font-size: 0.85em;
    color: #999;
    display: block;
    margin: 0 20px 20px 20px;
}

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

    .page-index-review-fabet-hero-content p {
        font-size: 1.1em;
    }

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

    .page-index-review-fabet h3 {
        font-size: 1.5em;
    }

    .page-index-review-fabet-pros-cons .page-index-review-fabet-container {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .page-index-review-fabet-section {
        padding: 40px 0;
    }

    .page-index-review-fabet-hero-content h1 {
        font-size: 2.2em;
    }

    .page-index-review-fabet-hero-content p {
        font-size: 1em;
    }

    .page-index-review-fabet-cta-button {
        padding: 15px 30px;
        font-size: 1em;
    }

    .page-index-review-fabet h2 {
        font-size: 1.6em;
        margin-bottom: 30px;
    }

    .page-index-review-fabet h3 {
        font-size: 1.3em;
    }

    .page-index-review-fabet p {
        font-size: 1em;
    }

    .page-index-review-fabet-game-category img {
        height: 250px;
    }

    .page-index-review-fabet-promotion-card img {
        height: 180px;
    }

    .page-index-review-fabet-faq .faq-question h3 {
        font-size: 1.1em;
    }

    .page-index-review-fabet-faq .faq-question {
        padding: 15px 20px;
    }

    .page-index-review-fabet-faq .faq-answer {
        padding: 0 20px;
    }

    .page-index-review-fabet-faq .faq-item.active .faq-answer {
        padding: 15px 20px;
    }

    .page-index-review-fabet-article-card img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .page-index-review-fabet-hero-content h1 {
        font-size: 1.8em;
    }

    .page-index-review-fabet-hero-content p {
        font-size: 0.9em;
    }

    .page-index-review-fabet-cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }

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

    .page-index-review-fabet h3 {
        font-size: 1.2em;
    }

    .page-index-review-fabet-game-category img {
        height: 200px;
    }

    .page-index-review-fabet-promotion-card {
        padding: 20px;
    }

    .page-index-review-fabet-promotion-card img {
        height: 150px;
    }

    .page-index-review-fabet-article-card img {
        height: 150px;
    }
}