/* style/slots-jackpot.css */
:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --card-bg: #111111;
    --background-color: #0A0A0A;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

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

.page-slots-jackpot__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-slots-jackpot__hero-section {
    position: relative;
    padding-top: 10px; /* Assuming body has padding-top from shared.css */
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-slots-jackpot__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px;
}

.page-slots-jackpot__hero-content {
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent overlay for text readability */
    width: 100%;
    box-sizing: border-box;
    margin-top: -5px; /* Slightly overlap image for visual flow */
}

.page-slots-jackpot__hero-title {
    font-size: clamp(2em, 3.5vw, 3em);
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slots-jackpot__hero-description {
    font-size: 1.1em;
    color: var(--text-main-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-slots-jackpot__btn-primary,
.page-slots-jackpot__btn-secondary,
.page-slots-jackpot__btn-tertiary,
.page-slots-jackpot__btn-play {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-slots-jackpot__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-slots-jackpot__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-slots-jackpot__btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-slots-jackpot__btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--background-color);
}

.page-slots-jackpot__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    font-weight: bold;
}

.page-slots-jackpot__section-text {
    font-size: 1.1em;
    color: var(--text-main-color);
    text-align: justify;
    margin-bottom: 20px;
}

.page-slots-jackpot__intro-section, 
.page-slots-jackpot__types-section, 
.page-slots-jackpot__guide-section, 
.page-slots-jackpot__features-section, 
.page-slots-jackpot__popular-games-section, 
.page-slots-jackpot__faq-section, 
.page-slots-jackpot__cta-section {
    padding: 40px 0;
}

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

.page-slots-jackpot__type-card,
.page-slots-jackpot__feature-card,
.page-slots-jackpot__game-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-jackpot__type-card:hover,
.page-slots-jackpot__feature-card:hover,
.page-slots-jackpot__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-slots-jackpot__type-image,
.page-slots-jackpot__feature-icon,
.page-slots-jackpot__game-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-slots-jackpot__type-title,
.page-slots-jackpot__feature-title,
.page-slots-jackpot__game-title {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-slots-jackpot__game-title a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-slots-jackpot__game-title a:hover {
    text-decoration: underline;
}

.page-slots-jackpot__type-description,
.page-slots-jackpot__feature-description,
.page-slots-jackpot__game-description {
    color: var(--text-main-color);
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-slots-jackpot__btn-tertiary,
.page-slots-jackpot__btn-play {
    background: var(--primary-color);
    color: var(--background-color);
    border: none;
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-slots-jackpot__btn-tertiary:hover,
.page-slots-jackpot__btn-play:hover {
    background: var(--secondary-color);
}

.page-slots-jackpot__guide-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-slots-jackpot__guide-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-jackpot__guide-item-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-slots-jackpot__guide-item p {
    color: var(--text-main-color);
    font-size: 1em;
}

.page-slots-jackpot__guide-item a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-slots-jackpot__faq-list {
    margin-top: 40px;
}

.page-slots-jackpot__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-slots-jackpot__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    color: var(--primary-color);
    font-weight: bold;
    user-select: none;
    list-style: none;
}

.page-slots-jackpot__faq-question::-webkit-details-marker {
    display: none;
}

.page-slots-jackpot__faq-item[open] > .page-slots-jackpot__faq-question {
    background-color: rgba(255, 211, 107, 0.1);
}

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

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

.page-slots-jackpot__faq-answer {
    padding: 0 25px 20px 25px;
    color: var(--text-main-color);
    font-size: 1em;
    line-height: 1.7;
}

.page-slots-jackpot__cta-section {
    text-align: center;
    padding: 60px 20px;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.page-slots-jackpot__btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
    margin-top: 30px;
}

/* Universal image and container responsive styles */
.page-slots-jackpot img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-slots-jackpot__container,
.page-slots-jackpot__hero-section,
.page-slots-jackpot__intro-section,
.page-slots-jackpot__types-section,
.page-slots-jackpot__guide-section,
.page-slots-jackpot__features-section,
.page-slots-jackpot__popular-games-section,
.page-slots-jackpot__faq-section,
.page-slots-jackpot__cta-section,
.page-slots-jackpot__type-card,
.page-slots-jackpot__feature-card,
.page-slots-jackpot__game-card,
.page-slots-jackpot__guide-item,
.page-slots-jackpot__faq-item,
.page-slots-jackpot__hero-cta-buttons,
.page-slots-jackpot__types-grid,
.page-slots-jackpot__features-grid,
.page-slots-jackpot__games-grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .page-slots-jackpot {
        font-size: 15px;
    }

    .page-slots-jackpot__hero-section {
        padding-top: 10px !important; /* Specific for hero section top padding */
    }

    .page-slots-jackpot__hero-content {
        padding: 20px 15px;
        margin-top: 0;
    }

    .page-slots-jackpot__hero-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-slots-jackpot__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-slots-jackpot__hero-cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    .page-slots-jackpot__btn-primary,
    .page-slots-jackpot__btn-secondary,
    .page-slots-jackpot__btn-tertiary,
    .page-slots-jackpot__btn-play,
    .page-slots-jackpot__btn-large {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        font-size: 1em;
    }

    .page-slots-jackpot__section-title {
        font-size: 2em;
        margin-bottom: 30px;
        margin-top: 40px;
        padding: 0 15px;
    }

    .page-slots-jackpot__section-text {
        font-size: 0.95em;
        padding: 0 15px;
        text-align: left;
    }

    .page-slots-jackpot__intro-section, 
    .page-slots-jackpot__types-section, 
    .page-slots-jackpot__guide-section, 
    .page-slots-jackpot__features-section, 
    .page-slots-jackpot__popular-games-section, 
    .page-slots-jackpot__faq-section, 
    .page-slots-jackpot__cta-section {
        padding: 30px 0;
    }

    .page-slots-jackpot__types-grid,
    .page-slots-jackpot__features-grid,
    .page-slots-jackpot__games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
        padding: 0 15px;
    }

    .page-slots-jackpot__type-card,
    .page-slots-jackpot__feature-card,
    .page-slots-jackpot__game-card,
    .page-slots-jackpot__guide-item,
    .page-slots-jackpot__faq-item {
        padding: 20px;
    }

    .page-slots-jackpot__type-image,
    .page-slots-jackpot__feature-icon,
    .page-slots-jackpot__game-image {
        min-width: 200px !important;
        min-height: 200px !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-slots-jackpot__type-title,
    .page-slots-jackpot__feature-title,
    .page-slots-jackpot__game-title {
        font-size: 1.3em;
    }

    .page-slots-jackpot__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-slots-jackpot__faq-answer {
        padding: 0 20px 15px 20px;
    }

    .page-slots-jackpot__cta-section {
        padding: 40px 15px;
    }

    .page-slots-jackpot__container {
        padding: 0;
    }
    
    .page-slots-jackpot img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-slots-jackpot__container,
    .page-slots-jackpot__hero-section,
    .page-slots-jackpot__intro-section,
    .page-slots-jackpot__types-section,
    .page-slots-jackpot__guide-section,
    .page-slots-jackpot__features-section,
    .page-slots-jackpot__popular-games-section,
    .page-slots-jackpot__faq-section,
    .page-slots-jackpot__cta-section,
    .page-slots-jackpot__type-card,
    .page-slots-jackpot__feature-card,
    .page-slots-jackpot__game-card,
    .page-slots-jackpot__guide-item,
    .page-slots-jackpot__faq-item,
    .page-slots-jackpot__hero-cta-buttons,
    .page-slots-jackpot__types-grid,
    .page-slots-jackpot__features-grid,
    .page-slots-jackpot__games-grid {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
}

@media (max-width: 1024px) {
    .page-slots-jackpot__container {
        padding: 20px;
    }
    .page-slots-jackpot__types-grid,
    .page-slots-jackpot__features-grid,
    .page-slots-jackpot__games-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-slots-jackpot__hero-title {
        font-size: clamp(2.5em, 4vw, 3.5em);
    }
    .page-slots-jackpot__section-title {
        font-size: 2.2em;
    }
}