/* style/casino-slot-gameplay-jackpot.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --login-button-color: #EA7C07;
    --background-color: #FFFFFF;
    --black-color: #000000;
}

/* Base styles for the page content */
.page-casino-slot-gameplay-jackpot {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default to light text assuming dark body background from shared.css */
    background-color: var(--black-color); /* Fallback, but main background from shared.css */
}

/* Hero Section */
.page-casino-slot-gameplay-jackpot__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure spacing below fixed header */
    background-color: var(--primary-color);
    color: var(--text-light);
    overflow: hidden;
}

.page-casino-slot-gameplay-jackpot__hero-content {
    max-width: 900px;
    z-index: 1;
    margin-bottom: 30px;
}

.page-casino-slot-gameplay-jackpot__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--text-light);
}

.page-casino-slot-gameplay-jackpot__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-casino-slot-gameplay-jackpot__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 0;
}

.page-casino-slot-gameplay-jackpot__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Area */
.page-casino-slot-gameplay-jackpot__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--background-color); /* White background for content */
    color: var(--text-dark); /* Dark text on white background */
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-casino-slot-gameplay-jackpot__section-title {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: bold;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.page-casino-slot-gameplay-jackpot__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.7;
}

.page-casino-slot-gameplay-jackpot__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-casino-slot-gameplay-jackpot__ordered-list {
    list-style: decimal;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-casino-slot-gameplay-jackpot__list-item,
.page-casino-slot-gameplay-jackpot__sub-list-item {
    margin-bottom: 10px;
}

.page-casino-slot-gameplay-jackpot__sub-list {
    list-style: circle;
    margin-left: 20px;
    margin-top: 10px;
}

.page-casino-slot-gameplay-jackpot__text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-casino-slot-gameplay-jackpot__text-link:hover {
    text-decoration: underline;
}

.page-casino-slot-gameplay-jackpot__image-container {
    margin: 30px 0;
    text-align: center;
}

.page-casino-slot-gameplay-jackpot__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Call to Action Buttons */
.page-casino-slot-gameplay-jackpot__btn-primary,
.page-casino-slot-gameplay-jackpot__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-casino-slot-gameplay-jackpot__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    margin-right: 15px;
}

.page-casino-slot-gameplay-jackpot__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
    transform: translateY(-2px);
}

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

.page-casino-slot-gameplay-jackpot__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.page-casino-slot-gameplay-jackpot__btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-casino-slot-gameplay-jackpot__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* FAQ Section */
.page-casino-slot-gameplay-jackpot__faq-list {
    margin-top: 40px;
}

.page-casino-slot-gameplay-jackpot__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-casino-slot-gameplay-jackpot__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    background-color: var(--background-color);
    transition: background-color 0.3s ease;
}

.page-casino-slot-gameplay-jackpot__faq-question:hover {
    background-color: #f0f0f0;
}

.page-casino-slot-gameplay-jackpot__faq-question h3 {
    margin: 0;
    font-size: 1em;
    color: var(--primary-color);
}

.page-casino-slot-gameplay-jackpot__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-casino-slot-gameplay-jackpot__faq-item.active .page-casino-slot-gameplay-jackpot__faq-toggle {
    transform: rotate(45deg);
}

.page-casino-slot-gameplay-jackpot__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-dark);
    background-color: #f9f9f9;
}

.page-casino-slot-gameplay-jackpot__faq-item.active .page-casino-slot-gameplay-jackpot__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show all content */
    padding: 15px 20px;
}

/* General CTA Section */
.page-casino-slot-gameplay-jackpot__cta-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-casino-slot-gameplay-jackpot__cta-content {
    max-width: 800px;
}

.page-casino-slot-gameplay-jackpot__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-casino-slot-gameplay-jackpot__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-casino-slot-gameplay-jackpot__cta-image-wrapper {
    max-width: 800px;
    width: 100%;
    margin-top: 20px;
}

.page-casino-slot-gameplay-jackpot__cta-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (min-width: 769px) {
    .page-casino-slot-gameplay-jackpot__hero-section {
        flex-direction: row;
        justify-content: space-around;
        text-align: left;
        padding: 120px 40px;
    }

    .page-casino-slot-gameplay-jackpot__hero-content {
        margin-right: 50px;
        margin-bottom: 0;
    }

    .page-casino-slot-gameplay-jackpot__hero-image-wrapper {
        position: relative;
        width: 50%;
        height: auto;
        opacity: 1;
    }

    .page-casino-slot-gameplay-jackpot__hero-image {
        border-radius: 8px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .page-casino-slot-gameplay-jackpot__cta-section {
        flex-direction: row;
        justify-content: center;
        text-align: left;
        padding: 80px 40px;
    }

    .page-casino-slot-gameplay-jackpot__cta-content {
        margin-right: 50px;
    }
}

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

    .page-casino-slot-gameplay-jackpot__hero-title {
        font-size: 2.2em;
    }

    .page-casino-slot-gameplay-jackpot__hero-description {
        font-size: 1em;
    }

    .page-casino-slot-gameplay-jackpot__content-area,
    .page-casino-slot-gameplay-jackpot__cta-section {
        padding: 30px 15px;
    }

    .page-casino-slot-gameplay-jackpot__section-title {
        font-size: 1.8em;
    }

    .page-casino-slot-gameplay-jackpot__text-block,
    .page-casino-slot-gameplay-jackpot__list-item,
    .page-casino-slot-gameplay-jackpot__sub-list-item {
        font-size: 1em;
    }

    .page-casino-slot-gameplay-jackpot__btn-primary,
    .page-casino-slot-gameplay-jackpot__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        margin-right: 0;
        margin-bottom: 15px;
        padding: 12px 20px;
        font-size: 1em;
    }
    
    .page-casino-slot-gameplay-jackpot__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-casino-slot-gameplay-jackpot__cta-title {
        font-size: 2em;
    }

    .page-casino-slot-gameplay-jackpot__cta-description {
        font-size: 1em;
    }

    /* Image, Video, and Container Responsive Fixes */
    .page-casino-slot-gameplay-jackpot img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-casino-slot-gameplay-jackpot video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-casino-slot-gameplay-jackpot__section,
    .page-casino-slot-gameplay-jackpot__card,
    .page-casino-slot-gameplay-jackpot__container,
    .page-casino-slot-gameplay-jackpot__image-container,
    .page-casino-slot-gameplay-jackpot__video-section,
    .page-casino-slot-gameplay-jackpot__video-container,
    .page-casino-slot-gameplay-jackpot__video-wrapper,
    .page-casino-slot-gameplay-jackpot__cta-section,
    .page-casino-slot-gameplay-jackpot__hero-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }

    .page-casino-slot-gameplay-jackpot__hero-section {
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-casino-slot-gameplay-jackpot__hero-image-wrapper {
        display: none; /* Hide hero image on mobile for better focus on content */
    }
    .page-casino-slot-gameplay-jackpot__cta-image-wrapper {
        padding: 0;
    }
}

/* Color Contrast Specifics */
.page-casino-slot-gameplay-jackpot__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-light); /* Deep blue background, light text */
}

.page-casino-slot-gameplay-jackpot__light-bg {
    background-color: var(--background-color);
    color: var(--text-dark); /* White background, dark text */
}

.page-casino-slot-gameplay-jackpot__faq-item {
    background-color: var(--background-color);
    border: 1px solid #e0e0e0;
}

.page-casino-slot-gameplay-jackpot__faq-answer {
    background-color: #f9f9f9; /* Slightly off-white for distinction */
    color: var(--text-dark);
}

/* Ensure headers within light-bg sections use primary color */
.page-casino-slot-gameplay-jackpot__light-bg .page-casino-slot-gameplay-jackpot__section-title {
    color: var(--primary-color);
}

/* Ensure text within dark-bg sections use light text */
.page-casino-slot-gameplay-jackpot__dark-bg .page-casino-slot-gameplay-jackpot__hero-description,
.page-casino-slot-gameplay-jackpot__dark-bg .page-casino-slot-gameplay-jackpot__cta-description {
    color: var(--text-light);
}