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

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

.page-jackpot-slots__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    text-align: center;
    overflow: hidden;
}

.page-jackpot-slots__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

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

.page-jackpot-slots__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.page-jackpot-slots__hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-jackpot-slots__btn-primary,
.page-jackpot-slots__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-jackpot-slots__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: none;
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-jackpot-slots__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

.page-jackpot-slots__btn-secondary {
    background: var(--bg-card);
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-jackpot-slots__btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--gold-color);
    color: var(--bg-main);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
}

.page-jackpot-slots__section {
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid var(--divider-color);
}

.page-jackpot-slots__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.page-jackpot-slots__section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-jackpot-slots__section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-jackpot-slots__image-text-block {
    display: flex;
    gap: 40px;
    align-items: center;
    text-align: left;
    margin-top: 40px;
}

.page-jackpot-slots__image-text-block:nth-child(even) {
    flex-direction: row-reverse;
}

.page-jackpot-slots__content-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    object-fit: cover;
    max-width: 100%;
    height: auto;
    display: block;
}

.page-jackpot-slots__text-content {
    flex: 1;
}

.page-jackpot-slots__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-jackpot-slots p {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

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

.page-jackpot-slots__card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

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

.page-jackpot-slots__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-jackpot-slots__feature-item {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-jackpot-slots__feature-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

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

.page-jackpot-slots__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-jackpot-slots__guide-item {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-jackpot-slots__guide-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

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

.page-jackpot-slots__list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 900px;
    text-align: left;
}

.page-jackpot-slots__list-item {
    background-color: var(--bg-card);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-jackpot-slots__list-item p {
    color: var(--text-secondary);
}

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

.page-jackpot-slots__provider-card {
    background-color: var(--bg-card);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-jackpot-slots__provider-logo {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-jackpot-slots__provider-name {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-jackpot-slots__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

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

.page-jackpot-slots__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold-color);
    outline: none;
}

.page-jackpot-slots__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-jackpot-slots__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-jackpot-slots__faq-qtext {
    flex-grow: 1;
}

.page-jackpot-slots__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--primary-color);
}

.page-jackpot-slots__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.page-jackpot-slots__cta-center {
    margin-top: 50px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-jackpot-slots__hero-image-wrapper {
        margin-bottom: 20px;
    }

    .page-jackpot-slots__main-title {
        font-size: clamp(2rem, 4.5vw, 4rem);
    }

    .page-jackpot-slots__hero-description {
        font-size: 1.1rem;
    }

    .page-jackpot-slots__section-title {
        font-size: clamp(1.8rem, 3.5vw, 3rem);
    }

    .page-jackpot-slots__image-text-block {
        flex-direction: column;
        text-align: center;
    }

    .page-jackpot-slots__image-text-block:nth-child(even) {
        flex-direction: column;
    }

    .page-jackpot-slots__text-content {
        margin-top: 20px;
    }
}

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

    .page-jackpot-slots__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body handles --header-offset, this is decorative */
    }

    .page-jackpot-slots__main-title {
        font-size: clamp(1.8rem, 7vw, 3rem);
    }

    .page-jackpot-slots__hero-description {
        font-size: 1rem;
    }

    .page-jackpot-slots__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-jackpot-slots__btn-primary,
    .page-jackpot-slots__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-jackpot-slots__section {
        padding: 50px 15px;
    }

    .page-jackpot-slots__container,
    .page-jackpot-slots__introduction-section,
    .page-jackpot-slots__game-types-section,
    .page-jackpot-slots__benefits-section,
    .page-jackpot-slots__guide-section,
    .page-jackpot-slots__tips-section,
    .page-jackpot-slots__providers-section,
    .page-jackpot-slots__faq-section,
    .page-jackpot-slots__conclusion-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-jackpot-slots__content-image,
    .page-jackpot-slots__feature-image,
    .page-jackpot-slots__guide-image,
    .page-jackpot-slots__provider-logo,
    .page-jackpot-slots img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-jackpot-slots__image-text-block {
        flex-direction: column;
    }

    .page-jackpot-slots__image-text-block:nth-child(even) {
        flex-direction: column;
    }

    .page-jackpot-slots__faq-item summary {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-jackpot-slots__faq-answer {
        padding: 0 20px 15px 20px;
    }

    .page-jackpot-slots__sub-title {
        font-size: 1.3rem;
    }

    .page-jackpot-slots__card-title,
    .page-jackpot-slots__feature-title,
    .page-jackpot-slots__guide-title,
    .page-jackpot-slots__provider-name {
        font-size: 1.2rem;
    }
}