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

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

.page-exclusive-games__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding */
}

.page-exclusive-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.6);
    /* No CSS filter for color change, only brightness allowed for overlay effect */
}

.page-exclusive-games__hero-content {
    position: relative; /* Changed to relative to ensure image-then-text flow */
    text-align: center;
    padding: 40px 20px;
    z-index: 1;
    margin-top: -100px; /* Adjust as needed to position content below image */
    width: 100%;
    max-width: 800px;
}

.page-exclusive-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    color: #F2C14E;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.page-exclusive-games__hero-description {
    font-size: 1.2rem;
    color: #E5E5E5;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-exclusive-games__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-exclusive-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #FFF6D6; /* Text Main */
}

.page-exclusive-games__btn--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    border: 1px solid #FFD36B;
}

.page-exclusive-games__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px #FFD36B; /* Glow */
}

.page-exclusive-games__btn--secondary {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
}

.page-exclusive-games__btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 10px #F2C14E;
}

.page-exclusive-games__section-title {
    font-size: 2.2rem;
    color: #F2C14E;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}

.page-exclusive-games__introduction-section .page-exclusive-games__text-content {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-exclusive-games__game-showcase-section {
    background-color: #111111; /* Card BG */
    padding: 60px 0;
    border-top: 1px solid #3A2A12; /* Border */
    border-bottom: 1px solid #3A2A12; /* Border */
}

.page-exclusive-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.page-exclusive-games__game-card {
    background-color: #0A0A0A;
    border: 1px solid #3A2A12; /* Border */
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-exclusive-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 0 15px #FFD36B; /* Glow */
}

.page-exclusive-games__game-image {
    width: 100%;
    height: 200px; /* Example fixed height */
    object-fit: cover;
    margin-bottom: 15px;
    min-width: 200px; /* Minimum image size */
    min-height: 200px;
}

.page-exclusive-games__game-title {
    font-size: 1.5rem;
    color: #F2C14E;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-exclusive-games__game-description {
    font-size: 0.95rem;
    color: #E5E5E5;
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-exclusive-games__btn--small {
    padding: 8px 18px;
    font-size: 0.9rem;
    min-width: 100px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    border: 1px solid #FFD36B;
}

.page-exclusive-games__btn--small:hover {
    box-shadow: 0 0 10px #FFD36B;
}

.page-exclusive-games__benefits-section {
    padding: 60px 0;
}

.page-exclusive-games__benefits-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-exclusive-games__list-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.5;
    transition: background-color 0.3s ease;
}

.page-exclusive-games__list-item:hover {
    background-color: #1a1a1a;
}

.page-exclusive-games__list-item strong {
    color: #F2C14E;
}

.page-exclusive-games__cta-section {
    background-color: #111111; /* Card BG */
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #3A2A12; /* Border */
    border-bottom: 1px solid #3A2A12; /* Border */
}

.page-exclusive-games__btn--large {
    padding: 15px 40px;
    font-size: 1.3rem;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    border: 1px solid #FFD36B;
    min-width: 200px;
}

.page-exclusive-games__btn--large:hover {
    box-shadow: 0 0 20px #FFD36B;
}

.page-exclusive-games__download-app-section {
    padding: 60px 0;
    text-align: center;
}

.page-exclusive-games__app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-exclusive-games__btn--app {
    background-color: #0A0A0A;
    border: 1px solid #F2C14E;
    padding: 12px 25px;
    font-size: 1rem;
    min-width: 180px;
}

.page-exclusive-games__btn--app:hover {
    background-color: #F2C14E;
    color: #0A0A0A;
    box-shadow: 0 0 15px #F2C14E;
}

.page-exclusive-games__faq-section {
    padding: 60px 0;
    background-color: #111111; /* Card BG */
    border-top: 1px solid #3A2A12; /* Border */
}

.page-exclusive-games__faq-item {
    background-color: #0A0A0A;
    border: 1px solid #3A2A12; /* Border */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-exclusive-games__faq-question {
    font-size: 1.2rem;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-exclusive-games__faq-answer {
    font-size: 1rem;
    color: #E5E5E5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-exclusive-games__hero-content {
        padding: 20px 15px;
        margin-top: -50px; /* Adjust for smaller screens */
    }

    .page-exclusive-games__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .page-exclusive-games__hero-description {
        font-size: 1rem;
    }

    .page-exclusive-games__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-exclusive-games__btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .page-exclusive-games__section-title {
        font-size: 1.8rem;
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .page-exclusive-games__game-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .page-exclusive-games__game-image {
        height: auto; /* Allow height to adjust */
        min-height: 200px;
        max-width: 100%; /* Ensure images don't overflow */
    }

    .page-exclusive-games__benefits-list {
        padding: 0 15px;
    }

    .page-exclusive-games__list-item,
    .page-exclusive-games__faq-item {
        padding: 15px;
    }

    .page-exclusive-games__faq-question {
        font-size: 1.1rem;
    }

    .page-exclusive-games__btn--large {
        font-size: 1.1rem;
        padding: 12px 30px;
    }

    .page-exclusive-games__app-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-exclusive-games__btn--app {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

/* Ensure all images within .page-exclusive-games are at least 200px wide in mobile */
@media (max-width: 768px) {
    .page-exclusive-games img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-exclusive-games__game-image { /* Specific override for game cards */
        width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    /* Any other img selector */
    .page-exclusive-games__hero-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

/* Ensure content area images are not smaller than 200px */
.page-exclusive-games img:not(.shared-header__logo):not(.shared-footer__payment-icon):not(.shared-footer__social-icon) {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Maintain aspect ratio and cover area */
}

.page-exclusive-games__hero-image { /* Specific for hero image */
    width: 100%;
    height: auto; /* Allow height to adjust proportionally */
    display: block;
}