.page-slot-games {
    background-color: #140C0C;
    color: #FFF1E8;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-slot-games__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.page-slot-games__hero-visual {
    width: 100%;
    max-height: 675px; /* Limit height for aesthetic */
    overflow: hidden;
}

.page-slot-games__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

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

.page-slot-games__main-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFF1E8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 30px;
    color: #FFF1E8;
}

.page-slot-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #140C0C;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px;
    text-align: center;
}

.page-slot-games__cta-button:hover {
    background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
    transform: translateY(-2px);
}

.page-slot-games__intro-section,
.page-slot-games__game-showcase-section,
.page-slot-games__features-section,
.page-slot-games__cta-banner {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-slot-games__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #FFF1E8;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-slot-games__section-title--gradient {
    background: linear-gradient(to right, #F3C54D, #FFB04A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.page-slot-games__text-content {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF1E8;
}

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

.page-slot-games__game-tile {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background-color: #2A1212;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    border: 1px solid #6A1E1E;
}

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

.page-slot-games__game-tile img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #6A1E1E;
}

.page-slot-games__view-all-wrapper {
    margin-top: 40px;
}

.page-slot-games__view-all-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #7E0D0D;
    color: #FFF1E8;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-slot-games__view-all-button:hover {
    background-color: #C61F1F;
}

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

.page-slot-games__feature-card {
    background-color: #2A1212;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #6A1E1E;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__feature-card img {
    width: 100%;
    max-width: 400px; /* Ensure images are not too wide */
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__feature-title {
    font-size: 1.4rem;
    color: #F3C54D;
    margin-bottom: 10px;
}

.page-slot-games__feature-description {
    font-size: 1rem;
    color: #FFF1E8;
}

.page-slot-games__cta-banner {
    background: linear-gradient(90deg, #C61F1F 0%, #E53030 100%);
    border-radius: 15px;
    padding: 50px 30px;
    margin-bottom: 40px;
}

.page-slot-games__cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #FFF1E8;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slot-games__cta-description {
    font-size: 1.15rem;
    color: #FFF1E8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__cta-button--large {
    padding: 18px 40px;
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 849px) {
    .page-slot-games__hero-content {
        margin-top: 15px;
        padding: 0 15px;
    }

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

    .page-slot-games__description {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }

    .page-slot-games__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .page-slot-games__game-tile img {
        
    }

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

    .page-slot-games__feature-card img {
        height: 200px;
    }

    .page-slot-games__cta-banner {
        padding: 40px 20px;
    }

    .page-slot-games__cta-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

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

    .page-slot-games__cta-button--large {
        padding: 15px 30px;
        font-size: 1.15rem;
    }
}

@media (max-width: 549px) {
    .page-slot-games__hero-content {
        margin-top: 10px;
        padding: 0 10px;
    }

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

    .page-slot-games__game-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .page-slot-games__game-tile img {
        
        max-width: 100%;
        object-fit: cover;
    }

    .page-slot-games__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-slot-games__feature-card img {
        height: 200px;
        max-width: 100%;
        object-fit: cover;
    }

    .page-slot-games__cta-banner {
        padding: 30px 15px;
    }

    .page-slot-games__cta-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .page-slot-games__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-slot-games__cta-button--large {
        padding: 14px 25px;
        font-size: 1.1rem;
    }

    /* Ensure all content area images are responsive and not smaller than 200px */
    .page-slot-games img {
        max-width: 100%;
        height: auto; /* Allow height to adjust */
        min-width: 200px; /* Ensure min width for content images */
        min-height: 200px; /* Ensure min height for content images */
    }

    /* Override specific image heights for mobile if necessary, ensuring min size */
    .page-slot-games__game-tile img {
        height: auto; /* Let auto adjust, but min-height will keep it large enough */
        min-height: 200px;
    }

    .page-slot-games__feature-card img {
        height: auto; /* Let auto adjust, but min-height will keep it large enough */
        min-height: 200px;
    }
}

/* General image rules for content area to prevent small icons */
.page-slot-games img {
    min-width: 200px;
    min-height: 200px;
}