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

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

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-slot-games-jackpot-secrets {
    font-family: Arial, sans-serif;
    color: var(--go666-text-main); /* Light text on dark background */
    background-color: var(--go666-background); /* Explicitly set for content area */
    line-height: 1.6;
    padding-bottom: 40px;
}

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

.page-slot-games-jackpot-secrets__dark-bg {
    background-color: var(--go666-background);
    color: var(--go666-text-main);
}

.page-slot-games-jackpot-secrets__light-bg {
    background-color: #11271B; /* Slightly lighter dark for contrast */
    color: var(--go666-text-main);
}

.page-slot-games-jackpot-secrets__section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--go666-gold-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1px;
}

.page-slot-games-jackpot-secrets__main-title {
    font-size: clamp(32px, 4.5vw, 56px);
    color: var(--go666-gold-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 1px;
    max-width: 900px;
}

.page-slot-games-jackpot-secrets__hero-description,
.page-slot-games-jackpot-secrets__text-block {
    font-size: 18px;
    text-align: center;
    margin-bottom: 25px;
    color: var(--go666-text-secondary);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games-jackpot-secrets__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
    overflow: hidden;
}

.page-slot-games-jackpot-secrets__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 40px; /* Space between image and content */
}

.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: 10;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

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

.page-slot-games-jackpot-secrets__cta-buttons--center {
    margin-top: 40px;
}

.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: 18px;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 300px; /* Limit individual button width */
    width: 100%;
}

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

.page-slot-games-jackpot-secrets__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-slot-games-jackpot-secrets__btn-secondary:hover {
    background-color: var(--go666-gold-color);
    color: var(--go666-background);
    transform: translateY(-3px);
}

.page-slot-games-jackpot-secrets__image-container {
    text-align: center;
    margin: 40px auto;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

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

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

.page-slot-games-jackpot-secrets__card {
    background-color: var(--go666-card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid var(--go666-border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    box-sizing: border-box;
}

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

.page-slot-games-jackpot-secrets__card-text {
    font-size: 16px;
    color: var(--go666-text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-slot-games-jackpot-secrets__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin-top: auto; /* Push image to bottom if content is short */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-slot-games-jackpot-secrets__strategy-list,
.page-slot-games-jackpot-secrets__feature-list,
.page-slot-games-jackpot-secrets__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-slot-games-jackpot-secrets__list-item {
    background-color: var(--go666-card-bg);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--go666-gold-color);
}

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

.page-slot-games-jackpot-secrets__list-text {
    font-size: 16px;
    color: var(--go666-text-secondary);
}

/* FAQ Section */
.page-slot-games-jackpot-secrets__faq-list {
    margin-top: 30px;
}

.page-slot-games-jackpot-secrets__faq-item {
    background-color: var(--go666-card-bg);
    border: 1px solid var(--go666-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.page-slot-games-jackpot-secrets__faq-question:hover {
    background-color: var(--go666-primary-color);
}

.page-slot-games-jackpot-secrets__faq-toggle {
    font-size: 24px;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--go666-gold-color);
}

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

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-slot-games-jackpot-secrets__hero-image-wrapper {
        max-height: 500px;
    }
}

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

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

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

    .page-slot-games-jackpot-secrets__hero-image-wrapper {
        max-height: 300px;
        margin-bottom: 30px;
    }

    .page-slot-games-jackpot-secrets__main-title {
        font-size: clamp(28px, 8vw, 40px);
    }

    .page-slot-games-jackpot-secrets__hero-description,
    .page-slot-games-jackpot-secrets__text-block {
        font-size: 16px;
        text-align: left;
    }

    .page-slot-games-jackpot-secrets__section-title {
        font-size: clamp(24px, 7vw, 36px);
    }

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

    .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__card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .page-slot-games-jackpot-secrets__list-title {
        font-size: 20px;
    }

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

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

    /* Mobile image and video responsiveness */
    .page-slot-games-jackpot-secrets img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-slot-games-jackpot-secrets__image-container,
    .page-slot-games-jackpot-secrets__card,
    .page-slot-games-jackpot-secrets__list-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
}

/* No CSS filters for images */
.page-slot-games-jackpot-secrets img {
    filter: none; /* Ensure no filters are applied */
}