:root {
    --page-slot-games-primary-color: #11A84E;
    --page-slot-games-secondary-color: #22C768;
    --page-slot-games-bg-color: #08160F;
    --page-slot-games-card-bg: #11271B;
    --page-slot-games-text-main: #F2FFF6;
    --page-slot-games-text-secondary: #A7D9B8;
    --page-slot-games-border-color: #2E7A4E;
    --page-slot-games-glow-color: #57E38D;
    --page-slot-games-gold-color: #F2C14E;
    --page-slot-games-divider-color: #1E3A2A;
    --page-slot-games-deep-green-color: #0A4B2C;
    --page-slot-games-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-slot-games {
    background-color: var(--page-slot-games-bg-color);
    color: var(--page-slot-games-text-main);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 50px;
}

.page-slot-games__hero-section,
.page-slot-games__intro-section,
.page-slot-games__game-types-section,
.page-slot-games__how-to-play-section,
.page-slot-games__promotions-section,
.page-slot-games__mobile-section,
.page-slot-games__responsible-gambling-section,
.page-slot-games__faq-section,
.page-slot-games__final-cta-section {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}

.page-slot-games__hero-section {
    padding-top: 10px; /* Small decorative top padding as body handles header offset */
}

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

.page-slot-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
}

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

.page-slot-games__hero-content {
    max-width: 900px;
    margin-top: -80px; /* Overlap slightly for visual effect, but not text on image */
    padding: 0 20px;
    position: relative;
    z-index: 1;
    background-color: var(--page-slot-games-bg-color);
    border-radius: 15px;
    padding-bottom: 20px;
}

.page-slot-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--page-slot-games-gold-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-slot-games__hero-description {
    font-size: 1.25rem;
    color: var(--page-slot-games-text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-slot-games__cta-buttons--center {
    justify-content: center;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games__btn-primary {
    background: var(--page-slot-games-btn-gradient);
    color: var(--page-slot-games-text-main);
    border: 2px solid transparent;
}

.page-slot-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-slot-games__btn-secondary {
    background-color: transparent;
    color: var(--page-slot-games-primary-color);
    border: 2px solid var(--page-slot-games-primary-color);
}

.page-slot-games__btn-secondary:hover {
    background-color: var(--page-slot-games-primary-color);
    color: var(--page-slot-games-text-main);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--page-slot-games-gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-slot-games__text-block {
    font-size: 1.1rem;
    color: var(--page-slot-games-text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-slot-games__dark-section {
    background-color: var(--page-slot-games-deep-green-color);
    color: var(--page-slot-games-text-main);
}

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

.page-slot-games__feature-item {
    background-color: var(--page-slot-games-card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-slot-games-border-color);
}

.page-slot-games__feature-title {
    font-size: 1.5rem;
    color: var(--page-slot-games-gold-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-slot-games__feature-description {
    color: var(--page-slot-games-text-secondary);
    font-size: 1rem;
}

.page-slot-games__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    min-height: 200px;
}

.page-slot-games__card {
    background-color: var(--page-slot-games-card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-slot-games-border-color);
    color: var(--page-slot-games-text-main);
}

.page-slot-games__card-title {
    font-size: 1.4rem;
    color: var(--page-slot-games-gold-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-slot-games__card-description {
    font-size: 1rem;
    color: var(--page-slot-games-text-secondary);
}

.page-slot-games__steps-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
}

.page-slot-games__step-item {
    background-color: var(--page-slot-games-card-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--page-slot-games-primary-color);
}

.page-slot-games__step-title {
    font-size: 1.3rem;
    color: var(--page-slot-games-gold-color);
    margin-bottom: 10px;
}

.page-slot-games__step-description {
    font-size: 1rem;
    color: var(--page-slot-games-text-secondary);
}

.page-slot-games__btn-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    min-width: 200px;
}

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

.page-slot-games__mobile-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
}

.page-slot-games__mobile-subtitle {
    font-size: 1.4rem;
    color: var(--page-slot-games-gold-color);
    margin-bottom: 10px;
}

.page-slot-games__mobile-description {
    font-size: 1rem;
    color: var(--page-slot-games-text-secondary);
    margin-bottom: 20px;
}

.page-slot-games__mobile-image {
    flex: 1;
    min-width: 200px;
    max-width: 450px;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games__faq-list {
    max-width: 900px;
    margin: 40px auto;
}

.page-slot-games__faq-item {
    background-color: var(--page-slot-games-card-bg);
    border: 1px solid var(--page-slot-games-border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--page-slot-games-text-main);
    cursor: pointer;
    background-color: var(--page-slot-games-deep-green-color);
    border-bottom: 1px solid var(--page-slot-games-divider-color);
    list-style: none;
}

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

.page-slot-games__faq-qtext {
    color: var(--page-slot-games-text-main);
}

.page-slot-games__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--page-slot-games-gold-color);
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
    transform: rotate(45deg);
}

.page-slot-games__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--page-slot-games-text-secondary);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .page-slot-games__hero-content {
        margin-top: -50px;
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-section,
    .page-slot-games__intro-section,
    .page-slot-games__game-types-section,
    .page-slot-games__how-to-play-section,
    .page-slot-games__promotions-section,
    .page-slot-games__mobile-section,
    .page-slot-games__responsible-gambling-section,
    .page-slot-games__faq-section,
    .page-slot-games__final-cta-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .page-slot-games__hero-section {
        padding-top: 10px !important;
    }

    .page-slot-games__main-title {
        font-size: 2.2rem;
    }

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

    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 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__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-slot-games__text-block {
        font-size: 1rem;
        margin-bottom: 30px;
    }

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

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

    .page-slot-games__image-content,
    .page-slot-games__mobile-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: unset;
        min-height: unset;
        margin-left: auto;
        margin-right: auto;
    }

    .page-slot-games__mobile-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-slot-games__mobile-text {
        text-align: center;
        max-width: 100%;
    }

    .page-slot-games__mobile-text .page-slot-games__btn-primary {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .page-slot-games__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

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

.page-slot-games img {
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-slot-games video,
    .page-slot-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-slot-games__video-section,
    .page-slot-games__video-container,
    .page-slot-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    
    .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;
        overflow: hidden !important;
    }

    .page-slot-games__cta-buttons,
    .page-slot-games__button-group,
    .page-slot-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        overflow: hidden !important;
    }

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