:root {
    --primary-color: #1A2B4C; /* Deep Blue */
    --secondary-color: #FFD700; /* Gold */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f4f7f6;
    --background-dark: #111b2d; /* Slightly darker than primary */
    --border-color: #e0e0e0;
}

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

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

/* 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), var(--background-dark)); /* Dark gradient for background */
    color: var(--text-light); /* Light text on dark background */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.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;
}

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

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

.page-index-review-fabet .hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color); /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-index-review-fabet .hero-content p a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-index-review-fabet .cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    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: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-index-review-fabet section {
    padding: 60px 0;
    margin-bottom: 20px;
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

.page-index-review-fabet section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

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

.page-index-review-fabet h2::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 h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

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

/* Intro Section Specific */
.page-index-review-fabet .intro-section {
    background-color: #fcfcfc;
}

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

.page-index-review-fabet .intro-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--primary-color);
}

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

.page-index-review-fabet .intro-card h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

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

/* Quick Links Section */
.page-index-review-fabet .quick-links-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
}

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

.page-index-review-fabet .quick-links-section h2::after {
    background-color: var(--text-light);
}

.page-index-review-fabet .quick-links-section p {
    color: var(--text-light);
    font-size: 1.1em;
    margin-bottom: 40px;
}

.page-index-review-fabet .link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.page-index-review-fabet .quick-link-button {
    display: block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 18px 25px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.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;
    display: flex;
    flex-direction: column;
}

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

.page-index-review-fabet .game-card img {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border-color);
}

.page-index-review-fabet .game-card h3 {
    padding: 20px 25px 10px;
    font-size: 1.5em;
    color: var(--primary-color);
}

.page-index-review-fabet .game-card p {
    padding: 0 25px 20px;
    font-size: 1em;
    flex-grow: 1; /* Allow paragraph to take up available space */
}

.page-index-review-fabet .game-button {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-index-review-fabet .game-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Promotions Section */
.page-index-review-fabet .promotions-section {
    background-color: #fcfcfc;
}

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

.page-index-review-fabet .promo-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;
    border-bottom: 5px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
}

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

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

.page-index-review-fabet .promo-card h3 {
    padding: 20px 25px 10px;
    font-size: 1.5em;
    color: var(--primary-color);
}

.page-index-review-fabet .promo-card p {
    padding: 0 25px 20px;
    font-size: 1em;
    flex-grow: 1;
}

.page-index-review-fabet .promo-button {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px 20px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

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

/* Security & Support Section */
.page-index-review-fabet .security-support-section {
    background-color: var(--background-dark);
    color: var(--text-light);
    text-align: center;
}

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

.page-index-review-fabet .security-support-section h2::after {
    background-color: var(--text-light);
}

.page-index-review-fabet .security-support-section p {
    color: var(--text-light);
    font-size: 1.1em;
    margin-bottom: 40px;
}

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

.page-index-review-fabet .ss-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--secondary-color);
}

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

.page-index-review-fabet .ss-card p {
    font-size: 1em;
    color: #e0e0e0; /* Lighter text for readability on dark background */
}

.page-index-review-fabet .contact-info {
    margin-top: 50px;
    font-size: 1.2em;
}

.page-index-review-fabet .contact-info a {
    color: var(--secondary-color);
    font-weight: bold;
}

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

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

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

.page-index-review-fabet .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    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);
}

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

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

.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 25px;
    background: #f9f9f9;
    color: var(--text-dark);
}

.page-index-review-fabet .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
}

.page-index-review-fabet .faq-answer p {
    margin-bottom: 0;
    font-size: 1em;
}
.page-index-review-fabet .faq-answer a {
    color: var(--primary-color);
    font-weight: bold;
}

/* Latest Blog Section */
.page-index-review-fabet .latest-blog-section {
    background-color: #fcfcfc;
}

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

.page-index-review-fabet .blog-post-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;
    display: flex;
    flex-direction: column;
}

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

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

.page-index-review-fabet .blog-post-card h3 {
    padding: 20px 25px 10px;
    font-size: 1.4em;
    color: var(--primary-color);
}
.page-index-review-fabet .blog-post-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
}
.page-index-review-fabet .blog-post-card h3 a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-index-review-fabet .blog-post-card p {
    padding: 0 25px 15px;
    font-size: 0.95em;
    flex-grow: 1;
}

.page-index-review-fabet .blog-post-card .post-date {
    display: block;
    padding: 0 25px 20px;
    font-size: 0.85em;
    color: #888;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-fabet .hero-content h1 {
        font-size: 2.8em;
    }
    .page-index-review-fabet .hero-content p {
        font-size: 1.2em;
    }
    .page-index-review-fabet .cta-button {
        padding: 15px 35px;
        font-size: 1.1em;
    }
    .page-index-review-fabet h2 {
        font-size: 2.2em;
    }
    .page-index-review-fabet h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-index-review-fabet .hero-section {
        padding: 40px 15px;
    }
    .page-index-review-fabet .hero-image {
        margin-bottom: 20px;
    }
    .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: 12px 30px;
        font-size: 1em;
        margin-top: 20px;
    }
    .page-index-review-fabet h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-index-review-fabet h3 {
        font-size: 1.3em;
    }
    .page-index-review-fabet p {
        font-size: 0.95em;
    }
    .page-index-review-fabet section {
        padding: 40px 0;
    }

    .page-index-review-fabet .intro-grid,
    .page-index-review-fabet .link-grid,
    .page-index-review-fabet .game-categories,
    .page-index-review-fabet .promo-grid,
    .page-index-review-fabet .security-support-grid,
    .page-index-review-fabet .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-index-review-fabet .intro-card,
    .page-index-review-fabet .game-card,
    .page-index-review-fabet .promo-card,
    .page-index-review-fabet .ss-card,
    .page-index-review-fabet .blog-post-card {
        padding: 20px;
    }

    .page-index-review-fabet .game-card img {
        height: 180px;
    }
    .page-index-review-fabet .promo-card img {
        height: 150px;
    }
    .page-index-review-fabet .blog-post-card img {
        height: 160px;
    }

    .page-index-review-fabet .faq-question {
        padding: 15px 20px;
    }
    .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 20px;
    }
    .page-index-review-fabet .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@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: 10px 25px;
        font-size: 0.9em;
    }
    .page-index-review-fabet h2 {
        font-size: 1.5em;
    }
    .page-index-review-fabet .quick-link-button {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-index-review-fabet .game-card h3,
    .page-index-review-fabet .promo-card h3,
    .page-index-review-fabet .ss-card h3,
    .page-index-review-fabet .blog-post-card h3 {
        font-size: 1.2em;
    }
}