.page-slot-games__hero-section {
    background-color: #017439;
    color: #FFFFFF;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-slot-games__hero-visual {
    width: 100%;
    margin-bottom: 20px;
}

.page-slot-games__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/5;
    object-fit: cover;
}

.page-slot-games__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-slot-games__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-slot-games__description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-slot-games__btn-cta {
    display: inline-block;
    background-color: #C30808;
    color: #FFFF00;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.page-slot-games__btn-cta:hover {
    background-color: #9c0606;
}

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

.page-slot-games__section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #017439;
    text-align: center;
    margin-bottom: 20px;
}

.page-slot-games__section-description {
    font-size: 1.1rem;
    color: #333333;
    text-align: center;
    margin-bottom: 40px;
}

.page-slot-games__featured-games {
    background-color: #FFFFFF;
}

.page-slot-games__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.page-slot-games__game-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.page-slot-games__game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games__game-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
}

.page-slot-games__btn-view-all {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: #017439;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-slot-games__btn-view-all:hover {
    background-color: #005a2d;
}

.page-slot-games__why-choose {
    background-color: #F8F8F8;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-slot-games__why-choose .page-slot-games__section-title {
    color: #017439;
}

.page-slot-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.page-slot-games__feature-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-slot-games__feature-item img {
    width: 100%; /* Ensure images are responsive within their containers */
    max-width: 250px; /* Recommended max-width for feature icons */
    height: auto;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-slot-games__feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #017439;
    margin-bottom: 10px;
}

.page-slot-games__feature-description {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
}

.page-slot-games__btn-register {
    display: inline-block;
    background-color: #C30808;
    color: #FFFF00;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.page-slot-games__btn-register:hover {
    background-color: #9c0606;
}

.page-slot-games__how-to-play {
    background-color: #EFEFEF;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-slot-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__step-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-slot-games__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #017439;
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-slot-games__step-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #017439;
    margin-bottom: 10px;
}

.page-slot-games__step-description {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
}

.page-slot-games__btn-learn-more {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
    background-color: #017439;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-slot-games__btn-learn-more:hover {
    background-color: #005a2d;
}

.page-slot-games__faq-section {
    background-color: #FFFFFF;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-slot-games__faq-list {
    margin-top: 40px;
}

.page-slot-games__faq-item {
    background-color: #F8F8F8;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-slot-games__faq-question {
    font-size: 1.25rem;
    font-weight: bold;
    color: #017439;
    margin-bottom: 10px;
}

.page-slot-games__faq-answer {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
}

.page-slot-games__btn-faq {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
    background-color: #017439;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-slot-games__btn-faq:hover {
    background-color: #005a2d;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-slot-games__hero-visual img {
        aspect-ratio: 4/3;
    }

    .page-slot-games__main-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .page-slot-games__description {
        font-size: 1rem;
    }

    .page-slot-games__btn-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-slot-games__section-title {
        font-size: 2rem;
    }

    .page-slot-games__section-description {
        font-size: 0.95rem;
    }

    .page-slot-games__games-grid,
    .page-slot-games__features-grid,
    .page-slot-games__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .page-slot-games__game-card img,
    .page-slot-games__feature-item img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .page-slot-games__container {
        padding: 30px 15px;
    }

    .page-slot-games__hero-visual img,
    .page-slot-games__games-grid img,
    .page-slot-games__features-grid img,
    .page-slot-games__how-to-play img {
        max-width: 100%;
        height: auto;
    }

    .page-slot-games__featured-games .page-slot-games__games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 549px) {
    .page-slot-games__section-title {
        font-size: 1.8rem;
    }

    .page-slot-games__games-grid {
        grid-template-columns: 1fr;
    }

    .page-slot-games__features-grid,
    .page-slot-games__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-slot-games__feature-item img,
    .page-slot-games__step-item img {
        max-width: 100%;
        height: auto;
    }

    .page-slot-games__hero-content {
        padding: 0 15px;
    }
}