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

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

/* Base styles for the page content, assuming body background is light */
.page-slot-games-jackpot-secrets {
    font-family: Arial, sans-serif;
    color: var(--text-dark); /* Default dark text for light body background */
    background-color: var(--background-white);
    line-height: 1.6;
}

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

.page-slot-games-jackpot-secrets__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 40px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--primary-color);
    color: var(--text-light);
    overflow: hidden;
}

.page-slot-games-jackpot-secrets__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
}

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

.page-slot-games-jackpot-secrets__hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 900px;
    margin-top: -100px; /* Pull content up slightly over the image, but not covering text */
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for readability */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot-secrets__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-slot-games-jackpot-secrets__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-slot-games-jackpot-secrets__btn-primary {
    background-color: var(--login-button-color); /* Specific login color for primary action */
    color: var(--text-light);
    border: 2px solid var(--login-button-color);
}

.page-slot-games-jackpot-secrets__btn-primary:hover {
    background-color: darken(var(--login-button-color), 10%);
    border-color: darken(var(--login-button-color), 10%);
}

.page-slot-games-jackpot-secrets__btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.page-slot-games-jackpot-secrets__btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.page-slot-games-jackpot-secrets__section {
    padding: 60px 0;
}

.page-slot-games-jackpot-secrets__section:nth-of-type(even) {
    background-color: #f8f8f8; /* Light gray background for alternating sections */
}

.page-slot-games-jackpot-secrets__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-slot-games-jackpot-secrets__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-dark);
}

.page-slot-games-jackpot-secrets__paragraph a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-slot-games-jackpot-secrets__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games-jackpot-secrets__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-slot-games-jackpot-secrets__card {
    background-color: var(--background-white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
    min-height: 250px; /* Ensure cards have minimum height */
}

.page-slot-games-jackpot-secrets__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-slot-games-jackpot-secrets__card-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slot-games-jackpot-secrets__card-text {
    font-size: 1em;
    line-height: 1.6;
}

.page-slot-games-jackpot-secrets__list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-slot-games-jackpot-secrets__list-item {
    background-color: var(--background-white);
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.page-slot-games-jackpot-secrets__list-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-games-jackpot-secrets__list-text {
    font-size: 1em;
    line-height: 1.6;
}

.page-slot-games-jackpot-secrets__cta-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* FAQ styles */
.page-slot-games-jackpot-secrets__faq {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-slot-games-jackpot-secrets__faq-list {
    margin-top: 40px;
}

.page-slot-games-jackpot-secrets__faq-item {
    background-color: var(--background-white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    color: var(--text-dark);
}

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

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

.page-slot-games-jackpot-secrets__faq-qtext {
    flex-grow: 1;
}

.page-slot-games-jackpot-secrets__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    width: 20px;
    text-align: center;
}

.page-slot-games-jackpot-secrets__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #f9f9f9;
}

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

.page-slot-games-jackpot-secrets__faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games-jackpot-secrets__hero-content {
        margin-top: -50px;
    }
}

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

    .page-slot-games-jackpot-secrets__container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-slot-games-jackpot-secrets__hero-section {
        padding: 40px 0;
        padding-top: 10px !important;
    }

    .page-slot-games-jackpot-secrets__hero-content {
        margin-top: -30px;
        padding: 15px;
    }

    .page-slot-games-jackpot-secrets__main-title {
        font-size: 2em;
    }

    .page-slot-games-jackpot-secrets__intro-text {
        font-size: 1em;
    }

    .page-slot-games-jackpot-secrets__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-slot-games-jackpot-secrets__btn-primary,
    .page-slot-games-jackpot-secrets__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-slot-games-jackpot-secrets__section {
        padding: 40px 0;
    }

    .page-slot-games-jackpot-secrets__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

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

    .page-slot-games-jackpot-secrets__content-image {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-slot-games-jackpot-secrets__card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-slot-games-jackpot-secrets__card {
        padding: 20px;
        min-height: auto;
    }

    .page-slot-games-jackpot-secrets__card-title {
        font-size: 1.4em;
    }

    .page-slot-games-jackpot-secrets__list-item {
        padding: 15px;
    }

    .page-slot-games-jackpot-secrets__list-title {
        font-size: 1.3em;
    }

    .page-slot-games-jackpot-secrets__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-slot-games-jackpot-secrets__faq-answer {
        padding: 15px 20px;
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-slot-games-jackpot-secrets__main-title {
        font-size: 1.8em;
    }
    .page-slot-games-jackpot-secrets__section-title {
        font-size: 1.8em;
    }
}

/* Global image responsiveness for content area */
.page-slot-games-jackpot-secrets img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Global video responsiveness for content area (if any) */
.page-slot-games-jackpot-secrets video,
.page-slot-games-jackpot-secrets__video {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

.page-slot-games-jackpot-secrets__video-section,
.page-slot-games-jackpot-secrets__video-container,
.page-slot-games-jackpot-secrets__video-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 768px) {
    .page-slot-games-jackpot-secrets img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-slot-games-jackpot-secrets video,
    .page-slot-games-jackpot-secrets__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-slot-games-jackpot-secrets__video-section,
    .page-slot-games-jackpot-secrets__video-container,
    .page-slot-games-jackpot-secrets__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-jackpot-secrets__video-section {
        padding-top: 10px !important;
    }
    .page-slot-games-jackpot-secrets__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-slot-games-jackpot-secrets__cta-button,
    .page-slot-games-jackpot-secrets__btn-primary,
    .page-slot-games-jackpot-secrets__btn-secondary,
    .page-slot-games-jackpot-secrets a[class*="button"],
    .page-slot-games-jackpot-secrets a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-slot-games-jackpot-secrets__cta-buttons,
    .page-slot-games-jackpot-secrets__button-group,
    .page-slot-games-jackpot-secrets__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;
    }
    .page-slot-games-jackpot-secrets__cta-buttons {
        display: flex;
        flex-direction: column;
    }
}