/* style/game-guides.css */
.page-game-guides {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-game-guides__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-game-guides__hero {
    background: linear-gradient(135deg, #0A192F 0%, #3a4b6b 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.page-game-guides__hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
    text-align: left;
    padding-left: 20px;
}

.page-game-guides__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Gold for main title */
}

.page-game-guides__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-game-guides__hero-cta {
    display: flex;
    gap: 20px;
}

.page-game-guides__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-game-guides__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-game-guides__btn--primary:hover {
    background-color: #e0b800;
    border-color: #e0b800;
    transform: translateY(-2px);
}

.page-game-guides__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-game-guides__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-game-guides__hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    max-width: 600px;
}

.page-game-guides__hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* General Sections */
.page-game-guides__introduction,
.page-game-guides__game-list,
.page-game-guides__responsible-gambling,
.page-game-guides__faq {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-game-guides__introduction {
    background-color: #f0f4f8; /* Light background for contrast */
    color: #0A192F;
}

.page-game-guides__section-title {
    font-size: 2.5em;
    color: #0A192F; /* Dark blue title */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-game-guides__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-game-guides__text-block {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #333;
}

.page-game-guides__features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.page-game-guides__feature-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    flex: 1 1 calc(33% - 40px);
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #FFD700;
}

.page-game-guides__feature-item:hover {
    transform: translateY(-5px);
}

.page-game-guides__feature-title {
    font-size: 1.6em;
    color: #0A192F;
    margin-bottom: 15px;
}

.page-game-guides__feature-description {
    color: #555;
    font-size: 1em;
}

/* Game List Grid */
.page-game-guides__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-guides__guide-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-game-guides__card-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e2e2e2; /* Placeholder background */
}

.page-game-guides__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.page-game-guides__guide-card:hover .page-game-guides__card-image {
    transform: scale(1.05);
}

.page-game-guides__card-title {
    font-size: 1.4em;
    color: #0A192F;
    padding: 20px 20px 10px;
    margin: 0;
}

.page-game-guides__card-description {
    color: #555;
    font-size: 0.95em;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-game-guides__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
    margin: 0 20px 20px;
    background-color: #0A192F;
    color: #FFD700;
    border: 2px solid #0A192F;
}

.page-game-guides__btn--small:hover {
    background-color: #FFD700;
    color: #0A192F;
    border-color: #FFD700;
}

/* CTA Banner */
.page-game-guides__cta-banner {
    background-color: #0A192F; /* Dark blue background */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-guides__cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Overlay for readability */
    z-index: 1;
}

.page-game-guides__cta-content {
    position: relative;
    z-index: 2;
}

.page-game-guides__cta-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold title */
    margin-bottom: 20px;
}

.page-game-guides__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-game-guides__btn--large {
    padding: 16px 32px;
    font-size: 1.2em;
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

.page-game-guides__btn--large:hover {
    background-color: #e0b800;
    border-color: #e0b800;
    transform: translateY(-3px);
}

.page-game-guides__cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


/* Responsible Gambling Section */
.page-game-guides__responsible-gambling {
    background-color: #f0f4f8; /* Light background */
    color: #0A192F;
    text-align: center;
}

.page-game-guides__btn--outline {
    background-color: transparent;
    color: #0A192F;
    border: 2px solid #0A192F;
    padding: 12px 25px;
    font-size: 1em;
    margin-top: 20px;
}

.page-game-guides__btn--outline:hover {
    background-color: #0A192F;
    color: #FFD700;
    border-color: #0A192F;
}

/* FAQ Section */
.page-game-guides__faq {
    background-color: #ffffff;
}

.page-game-guides__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-game-guides__faq-question {
    font-size: 1.3em;
    color: #0A192F;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-game-guides__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-game-guides__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}


.page-game-guides__faq-answer {
    font-size: 1em;
    color: #555;
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.page-game-guides__faq-answer a {
    color: #0A192F;
    text-decoration: underline;
}

.page-game-guides__faq-answer a:hover {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-guides__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
        min-height: auto;
    }

    .page-game-guides__hero-content {
        max-width: 100%;
        padding-left: 0;
    }

    .page-game-guides__hero-title {
        font-size: 2.5em;
    }

    .page-game-guides__hero-description {
        font-size: 1.1em;
    }

    .page-game-guides__hero-cta {
        justify-content: center;
    }

    .page-game-guides__hero-image {
        margin-top: 40px;
    }

    .page-game-guides__features {
        flex-direction: column;
    }

    .page-game-guides__feature-item {
        flex: 1 1 100%;
    }

    .page-game-guides__section-title {
        font-size: 2em;
    }

    .page-game-guides__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-game-guides__hero {
        padding: 40px 0;
    }

    .page-game-guides__hero-title {
        font-size: 2em;
    }

    .page-game-guides__hero-description {
        font-size: 1em;
    }

    .page-game-guides__hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-guides__btn {
        width: 100%;
        box-sizing: border-box;
    }

    .page-game-guides__grid {
        grid-template-columns: 1fr;
    }

    .page-game-guides__section-title {
        font-size: 1.8em;
    }

    .page-game-guides__cta-title {
        font-size: 1.8em;
    }

    .page-game-guides__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-game-guides__hero-title {
        font-size: 1.8em;
    }
    .page-game-guides__section-title {
        font-size: 1.6em;
    }
    .page-game-guides__cta-title {
        font-size: 1.6em;
    }
    .page-game-guides__faq-question {
        font-size: 1.1em;
    }
}