.page-game-guides {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-game-guides__hero-section {
    position: relative;
    padding-top: 10px; /* Minimal padding-top, relying on body for header offset */
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.page-game-guides__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-game-guides__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-game-guides__hero-content {
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-game-guides__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #F2C14E;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-game-guides__description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 30px;
    color: #E5E5E5;
}

.page-game-guides__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.page-game-guides__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-game-guides__btn--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
}

.page-game-guides__btn--primary:hover {
    opacity: 0.9;
    box-shadow: 0 0 15px #FFD36B;
}

.page-game-guides__btn--secondary {
    background-color: transparent;
    color: #F2C14E;
    border: 2px solid #F2C14E;
}

.page-game-guides__btn--secondary:hover {
    background-color: #F2C14E;
    color: #0A0A0A;
    box-shadow: 0 0 15px #FFD36B;
}

.page-game-guides__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #F2C14E;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-game-guides__section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E5E5E5;
}

.page-game-guides__guides-overview-section,
.page-game-guides__winning-strategies-section,
.page-game-guides__faq-section,
.page-game-guides__final-cta-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-game-guides__guide-cards,
.page-game-guides__strategy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-game-guides__guide-card,
.page-game-guides__strategy-item {
    background-color: #111111;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #FFF6D6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A2A12;
    display: flex;
    flex-direction: column;
}

.page-game-guides__guide-card:hover,
.page-game-guides__strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 0 15px #FFD36B;
}

.page-game-guides__guide-card-image,
.page-game-guides__strategy-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #3A2A12;
}

.page-game-guides__guide-card-title,
.page-game-guides__strategy-title {
    font-size: 1.4rem;
    color: #F2C14E;
    padding: 15px 20px 10px;
    font-weight: 600;
}

.page-game-guides__guide-card-text,
.page-game-guides__strategy-text {
    font-size: 0.95rem;
    padding: 0 20px 20px;
    flex-grow: 1;
    color: #E5E5E5;
}

.page-game-guides__cta-full-guides,
.page-game-guides__cta-more-strategies {
    text-align: center;
    margin-top: 20px;
}

.page-game-guides__faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-game-guides__faq-item {
    background-color: #111111;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #3A2A12;
    transition: box-shadow 0.3s ease;
}

.page-game-guides__faq-item:hover {
    box-shadow: 0 0 10px #FFD36B;
}

.page-game-guides__faq-question {
    font-size: 1.2rem;
    color: #F2C14E;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-game-guides__faq-answer {
    font-size: 1rem;
    color: #E5E5E5;
}

.page-game-guides__final-cta-section {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-game-guides__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-guides__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-game-guides__guide-cards,
    .page-game-guides__strategy-points {
        grid-template-columns: 1fr;
    }

    .page-game-guides__guide-card-image,
    .page-game-guides__strategy-image {
        max-width: 100%;
        height: auto;
        min-height: 200px;
        min-width: 200px; /* Ensure min width for images */
    }

    /* Content area images must not cause horizontal scroll */
    .page-game-guides img {
        max-width: 100%;
        height: auto;
    }

    .page-game-guides__main-title {
        font-size: 2rem;
    }
    .page-game-guides__section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .page-game-guides__main-title {
        font-size: 1.8rem;
    }
    .page-game-guides__section-title {
        font-size: 1.4rem;
    }
    .page-game-guides__guide-card-title,
    .page-game-guides__strategy-title {
        font-size: 1.2rem;
    }
    .page-game-guides__faq-question {
        font-size: 1.1rem;
    }
    .page-game-guides__guide-card-image,
    .page-game-guides__strategy-image {
        height: 180px;
    }
}