.page-game-of-the-month {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, relying on body for main offset */
}

.page-game-of-the-month__hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
}

.page-game-of-the-month__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 300px; /* Ensure minimum size */
    filter: brightness(0.5); /* Darken image for text readability, not changing color */
}

.page-game-of-the-month__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 900px;
    width: 90%;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-game-of-the-month__main-title {
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
    font-weight: bold;
    color: #F2C14E;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-of-the-month__description {
    font-size: clamp(1em, 2vw, 1.2em);
    color: #FFF6D6;
    margin-bottom: 30px;
    max-width: 700px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-game-of-the-month__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.page-game-of-the-month__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-game-of-the-month__section-title {
    font-size: 2.5em;
    color: #F2C14E;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 50px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-game-of-the-month__content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #111111;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
    margin-bottom: 40px;
}

.page-game-of-the-month__content-wrapper p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #FFF6D6;
}

.page-game-of-the-month__content-wrapper strong {
    color: #FFD36B;
}

.page-of-the-month__game-overview-section, .page-game-of-the-month__highlights-section, .page-game-of-the-month__get-started-section {
    padding: 20px 0;
}

.page-game-of-the-month__image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
    justify-items: center;
}

.page-game-of-the-month__game-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid #3A2A12;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-game-of-the-month__feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}

.page-game-of-the-month__feature-list li {
    background-color: #1a1a1a;
    margin-bottom: 10px;
    padding: 15px;
    border-left: 5px solid #F2C14E;
    border-radius: 5px;
    font-size: 1.1em;
    color: #FFF6D6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-game-of-the-month__feature-list li strong {
    color: #FFD36B;
}

.page-game-of-the-month__secondary-cta-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.page-game-of-the-month__secondary-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 193, 78, 0.3);
}

.page-game-of-the-month__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-game-of-the-month__outline-button {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #F2C14E;
    color: #F2C14E;
    background-color: transparent;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.page-game-of-the-month__outline-button:hover {
    background-color: #F2C14E;
    color: #0A0A0A;
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-game-of-the-month__mobile-app-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-game-of-the-month__hero-content {
        padding: 15px;
        width: 95%;
    }

    .page-game-of-the-month__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
    }

    .page-game-of-the-month__description {
        font-size: clamp(0.9em, 3vw, 1.1em);
    }

    .page-game-of-the-month__cta-button,
    .page-game-of-the-month__outline-button {
        width: 100%;
        min-width: unset;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-game-of-the-month__secondary-cta-button {
        width: 100%;
        min-width: unset;
        padding: 10px 15px;
        font-size: 0.95em;
    }

    .page-game-of-the-month__section-title {
        font-size: 2em;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-game-of-the-month__content-wrapper {
        padding: 15px;
        margin-bottom: 30px;
    }

    .page-game-of-the-month__image-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .page-game-of-the-month__game-image, .page-game-of-the-month__mobile-app-image {
        max-width: 100%;
        height: auto;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    /* Ensure images within content area are not too small on mobile */
    .page-game-of-the-month img {
        max-width: 100% !important;
        height: auto !important;
    }

    .page-game-of-the-month__feature-list li {
        font-size: 1em;
        padding: 12px;
    }
}