.page-slot-games {
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Text Main */
    padding-bottom: 40px;
    /* No padding-top here, as body handles --header-offset */
}

.page-slot-games__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding for first section */
    padding-bottom: 40px;
    background: linear-gradient(180deg, rgba(47, 107, 255, 0.1) 0%, rgba(111, 163, 255, 0.05) 100%); /* Subtle gradient for hero background */
}

.page-slot-games__hero-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-slot-games__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 40px auto 0 auto; /* Margin from image below */
    padding: 0 20px;
}

.page-slot-games__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    max-width: 100%; /* Ensure it doesn't overflow */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    /* Using clamp for font-size if needed, but per instruction, prefer not to hardcode */
    /* font-size: clamp(2.5rem, 5vw, 3.5rem); */
}

.page-slot-games__hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
}

.page-slot-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-slot-games__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

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

.page-slot-games__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    line-height: 1.3;
}

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

.page-slot-games__feature-item {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border color */
    transition: transform 0.3s ease;
}

.page-slot-games__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-slot-games__feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2F6BFF; /* Primary color */
    margin-bottom: 15px;
}

.page-slot-games__feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
}

.page-slot-games__popular-games-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

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

.page-slot-games__game-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border color */
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-slot-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-slot-games__game-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    /* No filter allowed */
}

.page-slot-games__game-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2F6BFF; /* Primary color */
    margin: 20px 20px 10px 20px;
}

.page-slot-games__game-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1F2D3D; /* Text Main */
    margin: 0 20px 20px 20px;
}

.page-slot-games__faq-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.page-slot-games__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-slot-games__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-slot-games__faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

.page-slot-games__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding-bottom: 30px;
    }

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

    .page-slot-games__main-title {
        font-size: 2rem; /* Adjusted for mobile */
    }

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

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

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

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

    .page-slot-games__feature-item,
    .page-slot-games__game-card {
        padding: 20px;
    }

    .page-slot-games__feature-title {
        font-size: 1.2rem;
    }

    .page-slot-games__game-title {
        font-size: 1.15rem;
        margin: 15px 15px 8px 15px;
    }

    .page-slot-games__game-description {
        margin: 0 15px 15px 15px;
    }

    .page-slot-games__faq-question {
        font-size: 1.05rem;
    }

    /* Ensure all images in content area are responsive and not smaller than 200px */
    .page-slot-games img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min-size for content images */
        min-height: 200px;
    }
    .page-slot-games__game-image {
        height: auto; /* Allow height to adjust */
        min-height: 200px; /* Ensure it doesn't get too small */
    }
}

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