/* style/slot-jackpot-games.css */

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

.page-slot-jackpot-games {
    background-color: var(--page-slot-jackpot-games-background);
    color: var(--page-slot-jackpot-games-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-slot-jackpot-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* body already handles header offset */
    background-color: var(--page-slot-jackpot-games-deep-green);
    overflow: hidden;
}

.page-slot-jackpot-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    position: relative;
}

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

.page-slot-jackpot-games__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(0, 0, 0, 0.4); /* Slightly dark overlay for text readability */
    border-radius: 10px;
    margin-top: -150px; /* Pull content up over the image, but not *on* it */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: var(--page-slot-jackpot-games-text-main);
}

.page-slot-jackpot-games__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    color: var(--page-slot-jackpot-games-gold);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-slot-jackpot-games__description {
    font-size: 1.1em;
    color: var(--page-slot-jackpot-games-text-secondary);
    margin-bottom: 30px;
}

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

.page-slot-jackpot-games__btn-primary,
.page-slot-jackpot-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-slot-jackpot-games__btn-primary {
    background: var(--page-slot-jackpot-games-button-gradient);
    color: var(--page-slot-jackpot-games-text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-slot-jackpot-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

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

.page-slot-jackpot-games__btn-secondary:hover {
    background: var(--page-slot-jackpot-games-primary);
    color: var(--page-slot-jackpot-games-text-main);
    transform: translateY(-3px);
}

.page-slot-jackpot-games__video-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 60px 20px;
    background-color: var(--page-slot-jackpot-games-background);
    color: var(--page-slot-jackpot-games-text-main);
}

.page-slot-jackpot-games__video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
}

.page-slot-jackpot-games__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    width: 100%; /* Ensure wrapper takes full width */
    max-width: 100%;
}

.page-slot-jackpot-games__video-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.page-slot-jackpot-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.page-slot-jackpot-games__video-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: var(--page-slot-jackpot-games-gold);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-jackpot-games__video-description {
    font-size: 1em;
    color: var(--page-slot-jackpot-games-text-secondary);
    margin-bottom: 30px;
}

.page-slot-jackpot-games__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--page-slot-jackpot-games-background);
    color: var(--page-slot-jackpot-games-text-main);
}

.page-slot-jackpot-games__section-title {
    font-size: clamp(2em, 3.5vw, 3em);
    color: var(--page-slot-jackpot-games-primary);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-slot-jackpot-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-slot-jackpot-games-gold);
    border-radius: 2px;
}

.page-slot-jackpot-games__text-block {
    background-color: var(--page-slot-jackpot-games-card-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    color: var(--page-slot-jackpot-games-text-main);
}

.page-slot-jackpot-games__sub-title {
    font-size: 1.8em;
    color: var(--page-slot-jackpot-games-gold);
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slot-jackpot-games p {
    margin-bottom: 15px;
    color: var(--page-slot-jackpot-games-text-secondary);
}

.page-slot-jackpot-games__image-gallery {
    text-align: center;
    margin-bottom: 30px;
}

.page-slot-jackpot-games__gallery-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: block;
    margin: 0 auto;
}

.page-slot-jackpot-games__section-faq {
    padding-bottom: 80px;
}

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

.page-slot-jackpot-games__faq-item {
    background-color: var(--page-slot-jackpot-games-card-bg);
    border: 1px solid var(--page-slot-jackpot-games-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--page-slot-jackpot-games-text-main);
}

.page-slot-jackpot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1em;
    font-weight: bold;
    color: var(--page-slot-jackpot-games-gold);
    cursor: pointer;
    background-color: var(--page-slot-jackpot-games-deep-green);
    border-bottom: 1px solid var(--page-slot-jackpot-games-divider);
    list-style: none; /* For details/summary */
}

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

.page-slot-jackpot-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

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

.page-slot-jackpot-games__faq-answer {
    padding: 20px 25px;
    font-size: 0.95em;
    color: var(--page-slot-jackpot-games-text-secondary);
    background-color: var(--page-slot-jackpot-games-card-bg);
}

.page-slot-jackpot-games__faq-answer p {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-slot-jackpot-games__hero-content {
        margin-top: -100px;
    }
}

@media (max-width: 768px) {
    .page-slot-jackpot-games {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-slot-jackpot-games__hero-section {
        padding: 10px 15px 40px 15px;
    }

    .page-slot-jackpot-games__hero-content {
        padding: 20px 15px;
        margin-top: -80px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-slot-jackpot-games__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

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

    .page-slot-jackpot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }

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

    .page-slot-jackpot-games__video-section {
        padding: 10px 15px 40px 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-slot-jackpot-games__video-container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-slot-jackpot-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-slot-jackpot-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-slot-jackpot-games__video-title {
        font-size: clamp(1.5em, 5vw, 2em);
    }

    .page-slot-jackpot-games__content-area {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-slot-jackpot-games__section-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
        margin-bottom: 30px;
    }

    .page-slot-jackpot-games__text-block {
        padding: 20px;
        margin-bottom: 20px;
    }

    .page-slot-jackpot-games__sub-title {
        font-size: 1.5em;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .page-slot-jackpot-games__image-gallery img {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
    }

    .page-slot-jackpot-games__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-slot-jackpot-games__faq-answer {
        padding: 15px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-slot-jackpot-games__hero-content {
        margin-top: -60px;
    }
    .page-slot-jackpot-games__main-title {
        font-size: clamp(1.5em, 8vw, 2em);
    }
}