.page-slot-games {
    font-family: 'Arial', sans-serif;
    color: #F3F8FF; /* Text Main */
    background-color: #08162B; /* Deep Navy from body */
}

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

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 40px;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-slot-games__hero-content {
    padding: 20px 15px;
    text-align: center;
    max-width: 800px;
    margin-top: 20px; /* Space between image and content */
}

.page-slot-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(79, 168, 255, 0.5); /* Glow */
}

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

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(43, 115, 246, 0.4);
}

.page-slot-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(43, 115, 246, 0.6);
}

.page-slot-games__btn-secondary {
    background: #10233F; /* Card BG */
    color: #F2C14E; /* Gold */
    border: 2px solid #F2C14E; /* Gold */
}

.page-slot-games__btn-secondary:hover {
    background: #F2C14E;
    color: #10233F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

/* General Section Styling */
.page-slot-games__section-title {
    font-size: 2.5rem;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(79, 168, 255, 0.3);
}

.page-slot-games__section-text {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #AFC4E8; /* Text Secondary */
}

.page-slot-games__image-content {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin-top: 30px;
}

/* Intro Section */
.page-slot-games__intro-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
}

/* Why 66win Section */
.page-slot-games__dark-section {
    background-color: #10233F; /* Card BG */
    padding: 60px 15px;
    border-top: 1px solid #1B3357; /* Divider */
    border-bottom: 1px solid #1B3357; /* Divider */
}

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

.page-slot-games__feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #244D84; /* Border */
    border-radius: 10px;
    padding: 25px;
    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 10px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games__feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-slot-games__feature-title {
    font-size: 1.6rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    font-weight: 600;
}

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

/* Popular Games Section */
.page-slot-games__popular-games-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-slot-games__game-card {
    background: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games__game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
}

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

.page-slot-games__game-description {
    font-size: 0.95rem;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.5;
    padding: 0 15px;
}

.page-slot-games__cta-center {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Promotions Section */
.page-slot-games__light-bg {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 60px 15px;
    border-top: 1px solid #1B3357; /* Divider */
    border-bottom: 1px solid #1B3357; /* Divider */
}

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

.page-slot-games__promo-card {
    background: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-slot-games__promo-title {
    font-size: 1.5rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    font-weight: 600;
    padding: 0 15px;
}

.page-slot-games__promo-description {
    font-size: 1rem;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 15px;
}

/* How to Play Section */
.page-slot-games__how-to-play-section {
    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: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    position: relative;
}

.page-slot-games__step-number {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: -55px auto 20px auto;
    border: 3px solid #08162B; /* Deep Navy to contrast */
    box-shadow: 0 5px 15px rgba(43, 115, 246, 0.4);
}

.page-slot-games__step-item:first-child .page-slot-games__step-number {
    margin-top: -5px; /* Adjust for first item if needed */
}

.page-slot-games__step-title {
    font-size: 1.6rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-slot-games__step-description {
    font-size: 1rem;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.6;
}

/* Responsible Gaming Section */
.page-slot-games__responsible-gaming-section {
    padding: 60px 15px;
    border-top: 1px solid #1B3357; /* Divider */
    border-bottom: 1px solid #1B3357; /* Divider */
}

/* FAQ Section */
.page-slot-games__faq-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

details.page-slot-games__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #244D84; /* Border */
    overflow: hidden;
    background: #10233F; /* Card BG */
}

details.page-slot-games__faq-item summary.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
}

details.page-slot-games__faq-item summary.page-slot-games__faq-question::-webkit-details-marker {
    display: none;
}

details.page-slot-games__faq-item summary.page-slot-games__faq-question:hover {
    background: rgba(43, 115, 246, 0.1);
}

.page-slot-games__faq-qtext {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: #F3F8FF; /* Text Main */
}

.page-slot-games__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: #F2C14E; /* Gold */
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
}

details.page-slot-games__faq-item .page-slot-games__faq-answer {
    padding: 0 25px 20px;
    background: rgba(16, 35, 63, 0.8); /* Slightly darker Card BG */
    border-radius: 0 0 8px 8px;
    color: #AFC4E8; /* Text Secondary */
    font-size: 1rem;
    line-height: 1.6;
}

/* Final CTA Section */
.page-slot-games__cta-final-section {
    padding: 80px 15px;
    text-align: center;
    border-top: 1px solid #1B3357; /* Divider */
}

.page-slot-games__cta-final-section .page-slot-games__section-title {
    margin-bottom: 20px;
}

.page-slot-games__cta-final-section .page-slot-games__section-text {
    margin-bottom: 50px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-slot-games__container {
        padding: 15px;
    }

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

    .page-slot-games__main-title {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .page-slot-games__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

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

    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .page-slot-games__cta-center {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-slot-games__cta-center .page-slot-games__btn-primary,
    .page-slot-games__cta-center .page-slot-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

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

    .page-slot-games__section-text {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .page-slot-games__intro-section,
    .page-slot-games__dark-section,
    .page-slot-games__popular-games-section,
    .page-slot-games__light-bg,
    .page-slot-games__how-to-play-section,
    .page-slot-games__responsible-gaming-section,
    .page-slot-games__faq-section,
    .page-slot-games__cta-final-section {
        padding: 30px 15px;
    }

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

    .page-slot-games__feature-title,
    .page-slot-games__game-title,
    .page-slot-games__promo-title,
    .page-slot-games__step-title {
        font-size: 1.4rem;
    }

    .page-slot-games__feature-description,
    .page-slot-games__game-description,
    .page-slot-games__promo-description,
    .page-slot-games__step-description {
        font-size: 0.9rem;
    }

    .page-slot-games__feature-image,
    .page-slot-games__game-image,
    .page-slot-games__promo-image,
    .page-slot-games__image-content {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }

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

    .page-slot-games__step-number {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
        margin: -50px auto 15px auto;
    }

    details.page-slot-games__faq-item summary.page-slot-games__faq-question {
        padding: 15px 20px;
    }

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

    .page-slot-games__faq-toggle {
        font-size: 24px;
        width: 25px;
    }

    details.page-slot-games__faq-item .page-slot-games__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }
    
    .page-slot-games__cta-final-section .page-slot-games__section-text {
        margin-bottom: 30px;
    }
    
    /* Ensure all content containers have proper padding and width */
    .page-slot-games__section,
    .page-slot-games__card,
    .page-slot-games__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Specific mobile adjustments for top-text if it were here */
    .page-slot-games__intro-section { /* This is the first content section */
        padding-top: 10px; /* Small top padding for first content block */
    }
}