:root {
    --primary-color: #0A2463;
    --secondary-color: #FFD700;
    --text-color-light: #f0f0f0;
    --text-color-dark: #333333;
    --background-dark: #0a0a0a;
    --card-background-dark: rgba(255, 255, 255, 0.08);
    --border-color-dark: rgba(255, 255, 255, 0.15);
    --button-hover-dark: #ccad00;
}

.page-index-review-fabet {
    color: var(--text-color-light); /* Main text color for dark body background */
    background-color: var(--background-dark); /* Ensure consistency with body background */
    line-height: 1.7;
}

.page-index-review-fabet__hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 120px; /* Adjust for fixed header */
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--primary-color);
}

.page-index-review-fabet__hero-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-index-review-fabet__hero-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay for better text contrast */
}

.page-index-review-fabet__main-title {
    font-size: 3.2em;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.page-index-review-fabet__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    max-width: 800px;
    margin-bottom: 30px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.page-index-review-fabet__hero-description a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-index-review-fabet__hero-description a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.page-index-review-fabet__cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #ccad00);
    color: var(--text-color-dark);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: none;
}

.page-index-review-fabet__cta-button:hover {
    background: linear-gradient(135deg, #ccad00, var(--secondary-color));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-fabet__review-section {
    padding: 60px 20px;
    background-color: var(--background-dark);
    color: var(--text-color-light);
}

.page-index-review-fabet__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-index-review-fabet__article-content {
    background: var(--card-background-dark);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color-dark);
}

.page-index-review-fabet__section-heading {
    font-size: 2.2em;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
    line-height: 1.3;
}

.page-index-review-fabet__section-heading a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-index-review-fabet__section-heading a:hover {
    text-decoration: underline;
}

.page-index-review-fabet__article-content h2:first-of-type {
    margin-top: 0;
}

.page-index-review-fabet__article-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color-light);
}

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

.page-index-review-fabet__article-content p a:hover {
    text-decoration: underline;
}

.page-index-review-fabet__content-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

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

.page-index-review-fabet__game-card-item {
    background: var(--card-background-dark);
    border: 1px solid var(--border-color-dark);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-review-fabet__game-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet__game-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color-dark);
}

.page-index-review-fabet__game-card-title {
    font-size: 1.4em;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.page-index-review-fabet__game-card-description {
    font-size: 1em;
    color: var(--text-color-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-review-fabet__game-card-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #05143a);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-index-review-fabet__game-card-button:hover {
    background: linear-gradient(135deg, #05143a, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet__article-content ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-color-light);
}

.page-index-review-fabet__article-content ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-index-review-fabet__article-content ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-fabet__article-content ul li a:hover {
    text-decoration: underline;
}

.page-index-review-fabet__cta-final-button {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
    background: linear-gradient(135deg, var(--secondary-color), #ccad00);
    color: var(--text-color-dark);
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.4em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: none;
}

.page-index-review-fabet__cta-final-button:hover {
    background: linear-gradient(135deg, #ccad00, var(--secondary-color));
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-index-review-fabet__faq-section {
    padding: 60px 20px;
    background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
    color: var(--text-color-light);
}

.page-index-review-fabet__faq-section .page-index-review-fabet__section-heading {
    color: #ffffff;
    margin-bottom: 40px;
}

.page-index-review-fabet__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-index-review-fabet__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--card-background-dark);
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-index-review-fabet__faq-question:hover {
    background: rgba(255, 255, 255, 0.12);
}

.page-index-review-fabet__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-color-light);
    pointer-events: none;
}

.page-index-review-fabet__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--secondary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.page-index-review-fabet__faq-item.active .page-index-review-fabet__faq-toggle {
    color: #ffffff;
    transform: rotate(45deg); /* Change '+' to 'x' or similar for active state */
}

.page-index-review-fabet__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 25px;
    opacity: 0;
}

.page-index-review-fabet__faq-item.active .page-index-review-fabet__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to accommodate content */
    padding: 20px 25px !important;
    opacity: 1;
    background: rgba(255, 255, 255, 0.05); /* Slightly different background for answer */
    border-radius: 0 0 8px 8px;
}

.page-index-review-fabet__faq-answer p {
    font-size: 1em;
    color: var(--text-color-light);
    margin-bottom: 0;
}

.page-index-review-fabet__faq-answer p a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-fabet__faq-answer p a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-fabet__main-title {
        font-size: 2.8em;
    }
    .page-index-review-fabet__hero-description {
        font-size: 1.2em;
    }
    .page-index-review-fabet__cta-button {
        padding: 15px 35px;
        font-size: 1.1em;
    }
    .page-index-review-fabet__section-heading {
        font-size: 2em;
    }
    .page-index-review-fabet__article-content {
        padding: 30px;
    }
    .page-index-review-fabet__article-content p,
    .page-index-review-fabet__article-content ul li {
        font-size: 1em;
    }
    .page-index-review-fabet__game-card-title {
        font-size: 1.2em;
    }
    .page-index-review-fabet__game-card-description {
        font-size: 0.95em;
    }
    .page-index-review-fabet__game-card-image {
        height: 180px;
    }
    .page-index-review-fabet__cta-final-button {
        padding: 18px 50px;
        font-size: 1.2em;
    }
    .page-index-review-fabet__faq-question h3 {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-index-review-fabet__hero-banner {
        padding-top: 100px !important; /* Mobile fixed header adjustment */
        padding-bottom: 30px;
    }
    .page-index-review-fabet__hero-text-overlay {
        padding: 15px 20px;
    }
    .page-index-review-fabet__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-index-review-fabet__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-index-review-fabet__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-index-review-fabet__review-section,
    .page-index-review-fabet__faq-section {
        padding: 30px 15px;
    }
    .page-index-review-fabet__container,
    .page-index-review-fabet__article-content,
    .page-index-review-fabet__game-category,
    .page-index-review-fabet__game-card-item,
    .page-index-review-fabet__faq-item,
    .page-index-review-fabet__faq-question,
    .page-index-review-fabet__faq-answer {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-index-review-fabet__article-content {
        padding: 20px;
    }
    .page-index-review-fabet__section-heading {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .page-index-review-fabet__article-content p,
    .page-index-review-fabet__article-content ul li {
        font-size: 0.95em;
        margin-bottom: 15px;
    }
    .page-index-review-fabet__game-category {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-index-review-fabet__game-card-image {
        height: 150px;
    }
    .page-index-review-fabet__game-card-title {
        font-size: 1.1em;
    }
    .page-index-review-fabet__game-card-description {
        font-size: 0.9em;
    }
    .page-index-review-fabet__game-card-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-index-review-fabet__cta-final-button {
        padding: 15px 40px;
        font-size: 1.1em;
        margin-top: 30px;
    }
    .page-index-review-fabet__faq-question {
        padding: 15px 20px;
    }
    .page-index-review-fabet__faq-question h3 {
        font-size: 0.95em;
    }
    .page-index-review-fabet__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }
    .page-index-review-fabet__faq-answer {
        padding: 0 20px;
    }
    .page-index-review-fabet__faq-item.active .page-index-review-fabet__faq-answer {
        padding: 15px 20px !important;
    }
    .page-index-review-fabet img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-index-review-fabet__main-title {
        font-size: 1.6em;
    }
    .page-index-review-fabet__hero-description {
        font-size: 0.9em;
    }
    .page-index-review-fabet__cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-index-review-fabet__section-heading {
        font-size: 1.5em;
    }
    .page-index-review-fabet__article-content {
        padding: 15px;
    }
    .page-index-review-fabet__article-content p,
    .page-index-review-fabet__article-content ul li {
        font-size: 0.9em;
    }
    .page-index-review-fabet__game-card-image {
        height: 120px;
    }
    .page-index-review-fabet__game-card-title {
        font-size: 1em;
    }
    .page-index-review-fabet__game-card-button {
        padding: 8px 15px;
        font-size: 0.85em;
    }
    .page-index-review-fabet__cta-final-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-index-review-fabet__faq-question h3 {
        font-size: 0.9em;
    }
    .page-index-review-fabet__faq-toggle {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }
}