.page-slot-games {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-slot-games__hero-section {
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding: 20px 0 40px;
    position: relative;
    overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Ensure it doesn't overflow */
    margin-bottom: 20px;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover; /* Ensure image covers the area */
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

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

.page-slot-games__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2C14E; /* Gold */
}

.page-slot-games__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-slot-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 150px; /* Ensure buttons are not too small */
    text-align: center;
}

.page-slot-games__btn--primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6; /* Text Main */
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-slot-games__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-slot-games__btn--secondary {
    background: #11271B; /* Card BG */
    color: #2AD16F; /* A lighter green from the gradient, for contrast */
    border: 2px solid #2E7A4E; /* Border */
}

.page-slot-games__btn--secondary:hover {
    background: #1E3A2A; /* Divider for hover */
    color: #F2FFF6; /* Text Main */
    border-color: #57E38D; /* Glow for hover */
}

.page-slot-games__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    min-width: 100px;
}

.page-slot-games__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin: 60px 0 40px;
    color: #F2C14E; /* Gold */
    position: relative;
}

.page-slot-games__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-slot-games__featured-games-section,
.page-slot-games__why-choose-section,
.page-slot-games__how-to-play-section,
.page-slot-games__promotions-section,
.page-slot-games__faq-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-slot-games__game-card {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games__game-card a {
    text-decoration: none;
    color: inherit;
    display: block; /* Make the whole card clickable visually */
}

.page-slot-games__game-thumbnail {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-slot-games__game-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #F2FFF6; /* Text Main */
    padding: 0 15px;
}

.page-slot-games__game-description {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-slot-games__view-all-cta {
    text-align: center;
    margin-top: 50px;
}

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

.page-slot-games__feature-item {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2AD16F; /* From Button gradient */
}

.page-slot-games__feature-description,
.page-slot-games__feature-games-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.page-slot-games__step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #2E7A4E; /* Border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-slot-games__step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2AD16F; /* From Button gradient */
    flex-shrink: 0;
    line-height: 1;
}

.page-slot-games__step-content {
    text-align: left;
}

.page-slot-games__step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #F2FFF6; /* Text Main */
}

.page-slot-games__step-description {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.5;
}

.page-slot-games__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.page-slot-games__promotions-description {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__cta-promotions {
    text-align: center;
    margin-top: 30px;
}

.page-slot-games__faq-list {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #1E3A2A; /* Divider */
    border-radius: 10px;
    overflow: hidden;
}

.page-slot-games__faq-item {
    background-color: #11271B; /* Card BG */
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-slot-games__faq-item:last-child {
    border-bottom: none;
}

.page-slot-games__faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 25px;
    cursor: pointer;
    color: #F2FFF6; /* Text Main */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-slot-games__faq-question:hover {
    background-color: #0A4B2C; /* Deep Green */
}

.page-slot-games__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-slot-games__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-slot-games__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #0A4B2C; /* Deep Green for answer background */
}

.page-slot-games__faq-answer.open {
    max-height: 200px; /* Adjust as needed, will be overridden by JS scrollHeight */
    padding-bottom: 20px;
}

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

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

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

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

    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-slot-games__btn {
        width: 80%;
        max-width: 300px;
    }

    .page-slot-games__section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin: 40px 0 30px;
    }

    .page-slot-games__featured-games-section,
    .page-slot-games__why-choose-section,
    .page-slot-games__how-to-play-section,
    .page-slot-games__promotions-section,
    .page-slot-games__faq-section {
        padding: 30px 15px;
    }

    .page-slot-games__games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusted for better mobile fit */
        gap: 20px;
    }

    .page-slot-games__game-card {
        padding-bottom: 15px;
    }

    .page-slot-games__game-thumbnail {
        height: 200px;
        min-width: 200px; /* Enforce min size */
        min-height: 200px; /* Enforce min size */
        max-width: 100%; /* Important for mobile overflow */
        height: auto; /* Important for mobile overflow */
    }

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

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

    .page-slot-games__step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 10px;
    }
    .page-slot-games__step-content {
        text-align: center;
    }

    .page-slot-games__step-number {
        font-size: 2rem;
    }

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

    .page-slot-games__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .page-slot-games__faq-answer p {
        font-size: 0.9rem;
    }
}

/* Ensure content area images don't cause overflow on mobile */
@media (max-width: 768px) {
    .page-slot-games img {
        max-width: 100%;
        height: auto;
    }
    .page-slot-games__game-thumbnail {
        min-width: 200px; /* Ensure images are not too small as per rules */
        min-height: 200px;
    }
}