.page-game-guides {
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-game-guides__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    background-color: #11271B; /* Card BG for hero section */
    overflow: hidden; /* To contain the image if it overflows slightly */
}

.page-game-guides__hero-visual {
    width: 100%;
    max-height: 500px; /* Limit height for visual appeal */
    overflow: hidden;
    margin-bottom: 20px;
}

.page-game-guides__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

.page-game-guides__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.page-game-guides__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: bold;
    color: #F2FFF6;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-game-guides__intro-text {
    font-size: 1.1rem;
    color: #A7D9B8;
    margin-bottom: 30px;
}

.page-game-guides__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-height: 44px; /* Ensure touch target size */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-game-guides__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-guides__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #F2FFF6;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-game-guides__category-section {
    padding: 60px 0;
}

.page-game-guides__category-item {
    background-color: #11271B;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #2E7A4E;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-game-guides__category-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #F2FFF6;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
}

.page-game-guides__category-description {
    color: #A7D9B8;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid, min 250px */
    gap: 20px;
    margin-bottom: 30px;
}

.page-game-guides__game-tile {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s ease-in-out;
    background-color: #0A4B2C; /* Deep Green for placeholder/border */
    border: 1px solid #2E7A4E;
}

.page-game-guides__game-tile:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-game-guides__game-tile img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-game-guides__view-more-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 12px 25px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
    min-height: 44px; /* Ensure touch target size */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-game-guides__view-more-button:hover {
    filter: brightness(1.1);
}

.page-game-guides__cta-section {
    background-color: #0A4B2C; /* Deep Green */
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #2E7A4E;
    border-bottom: 1px solid #2E7A4E;
    margin-bottom: 40px;
}

.page-game-guides__cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #F2FFF6;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-guides__cta-description {
    font-size: 1.1rem;
    color: #A7D9B8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides__cta-button--large {
    min-width: 250px;
    max-width: 90%;
}

.page-game-guides__faq-section {
    padding: 40px 0 60px;
}

.page-game-guides__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-game-guides__faq-item {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-game-guides__faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background-color: #11271B;
    color: #F2FFF6;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    min-height: 44px; /* Ensure touch target size */
}

.page-game-guides__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.page-game-guides__faq-answer {
    padding: 0 25px;
    background-color: #0A4B2C; /* Deep Green for answer background */
    color: #A7D9B8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-game-guides__faq-answer.is-active {
    max-height: 300px; /* Adjust based on content */
    padding: 15px 25px 20px;
}

.page-game-guides__faq-answer p {
    margin: 0;
    padding-bottom: 5px;
}

.page-game-guides__faq-answer a {
    color: #57E38D; /* Glow color for links in FAQ answer */
    text-decoration: none;
    font-weight: bold;
}

.page-game-guides__faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-game-guides__hero-section {
        flex-direction: column;
        padding-bottom: 30px;
    }

    .page-game-guides__hero-visual {
        max-height: 300px;
        margin-bottom: 15px;
    }

    .page-game-guides__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-game-guides__intro-text {
        font-size: 1rem;
    }

    .page-game-guides__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* More columns on smaller screens */
    }
    
    .page-game-guides__game-tile img {
        min- /* Adjust min size for smaller grid items */
        min-
    }
}

@media (max-width: 549px) {
    .page-game-guides__container {
        padding: 15px;
    }

    .page-game-guides__hero-section {
        padding-bottom: 20px;
    }

    .page-game-guides__hero-visual {
        max-height: 250px;
    }

    .page-game-guides__main-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }

    .page-game-guides__intro-text {
        font-size: 0.95rem;
    }

    .page-game-guides__category-item {
        padding: 20px;
        margin-bottom: 30px;
    }

    .page-game-guides__game-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
        gap: 15px;
    }

    .page-game-guides__game-tile img {
        min-width: 250px; /* Ensure min size for single column layout */
        min-height: 200px;
    }

    .page-game-guides__section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-game-guides__category-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }

    .page-game-guides__cta-section {
        padding: 40px 15px;
    }

    .page-game-guides__cta-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .page-game-guides__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
}

/* Ensure content area images are never smaller than 200px, as per rules */
.page-game-guides img:not(.shared-header__logo):not(.shared-footer__payment-icon):not(.shared-footer__social-icon) {
    min-width: 200px;
    min-height: 200px;
}

/* Mobile responsive image constraint for all images within .page-game-guides */
@media (max-width: 768px) {
    .page-game-guides img {
        max-width: 100%;
        height: auto;
    }
}