.page-resources-latest-game-recommendations {
    color: #333333; /* Dark text for light body background */
}

.page-resources-latest-game-recommendations__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    text-align: center;
    overflow: hidden;
    background-color: #000000; /* Dark background for hero section */
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.page-resources-latest-game-recommendations__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.page-resources-latest-game-recommendations__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-resources-latest-game-recommendations__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-resources-latest-game-recommendations__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-resources-latest-game-recommendations__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-resources-latest-game-recommendations__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-resources-latest-game-recommendations__button--register {
    background-color: #FFFFFF; /* Register button background */
    color: #000000; /* Dark text for light background */
}

.page-resources-latest-game-recommendations__button--register:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.page-resources-latest-game-recommendations__button--login {
    background-color: #FCBC45; /* Login button background */
    color: #000000; /* Dark text for FCBC45 background */
}

.page-resources-latest-game-recommendations__button--login:hover {
    background-color: #e0a53b;
    transform: translateY(-3px);
}

.page-resources-latest-game-recommendations__button--play, 
.page-resources-latest-game-recommendations__button--claim {
    background-color: #FCBC45;
    color: #000000;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
}

.page-resources-latest-game-recommendations__button--play:hover,
.page-resources-latest-game-recommendations__button--claim:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-resources-latest-game-recommendations__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.7;
    font-size: 1.1em;
}

.page-resources-latest-game-recommendations__introduction-section,
.page-resources-latest-game-recommendations__why-choose-wowjili,
.page-resources-latest-game-recommendations__how-to-start,
.page-resources-latest-game-recommendations__exclusive-bonuses,
.page-resources-latest-game-recommendations__responsible-gaming,
.page-resources-latest-game-recommendations__conclusion-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Ensures light background for text */
}

.page-resources-latest-game-recommendations__game-categories {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-resources-latest-game-recommendations__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

.page-resources-latest-game-recommendations__paragraph {
    margin-bottom: 20px;
    color: #333333;
}

.page-resources-latest-game-recommendations__feature-list,
.page-resources-latest-game-recommendations__steps-list,
.page-resources-latest-game-recommendations__bonus-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-resources-latest-game-recommendations__feature-item,
.page-resources-latest-game-recommendations__step-item,
.page-resources-latest-game-recommendations__bonus-item {
    background-color: #f5f5f5;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #333333;
    font-size: 1em;
    border-left: 5px solid #FCBC45;
}

.page-resources-latest-game-recommendations__step-item strong,
.page-resources-latest-game-recommendations__bonus-item strong {
    color: #000000;
}

.page-resources-latest-game-recommendations__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-latest-game-recommendations__game-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.page-resources-latest-game-recommendations__card-image {
    width: 100%;
    height: 300px; /* Ensure images are not too small */
    object-fit: cover;
    display: block;
}

.page-resources-latest-game-recommendations__card-title {
    font-size: 1.5em;
    color: #000000;
    margin: 20px 15px 10px;
}

.page-resources-latest-game-recommendations__card-title a {
    text-decoration: none;
    color: #000000;
}

.page-resources-latest-game-recommendations__card-title a:hover {
    color: #FCBC45;
}

.page-resources-latest-game-recommendations__card-description {
    font-size: 0.95em;
    color: #555555;
    padding: 0 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-resources-latest-game-recommendations__link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-latest-game-recommendations__link:hover {
    color: #e0a53b;
    text-decoration: underline;
}

.page-resources-latest-game-recommendations__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-resources-latest-game-recommendations__hero-title {
        font-size: 2.2em;
    }

    .page-resources-latest-game-recommendations__hero-description {
        font-size: 1em;
    }

    .page-resources-latest-game-recommendations__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-latest-game-recommendations__button {
        width: 80%;
        margin: 0 auto;
    }

    .page-resources-latest-game-recommendations__section-title {
        font-size: 1.8em;
    }

    .page-resources-latest-game-recommendations__container {
        padding: 20px 15px;
    }

    .page-resources-latest-game-recommendations__category-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-latest-game-recommendations__game-card {
        margin: 0 10px;
    }

    .page-resources-latest-game-recommendations__card-image {
        max-width: 100%;
        height: auto; /* Ensure images scale down */
        min-height: 200px; /* Minimum height for mobile */
    }

    .page-resources-latest-game-recommendations__paragraph,
    .page-resources-latest-game-recommendations__feature-item,
    .page-resources-latest-game-recommendations__step-item,
    .page-resources-latest-game-recommendations__bonus-item,
    .page-resources-latest-game-recommendations__card-description {
        font-size: 0.95em;
    }

    /* Ensure all images within the content area are responsive and not too small */
    .page-resources-latest-game-recommendations img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum width for content images */
        min-height: 200px; /* Enforce minimum height for content images */
    }
}

/* Ensure no image filter is applied */
.page-resources-latest-game-recommendations img {
    filter: none; /* Absolutely no filter property */
}