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

.page-slot-games-jackpot-revealed {
    font-family: Arial, sans-serif;
    color: var(--text-main); /* Default text color for the page */
    background-color: var(--background-color); /* Page background from custom colors */
}

.page-slot-games-jackpot-revealed__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    box-sizing: border-box;
    text-align: center;
}

.page-slot-games-jackpot-revealed__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Limit height for hero image */
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.page-slot-games-jackpot-revealed__hero-content {
    width: 100%;
    max-width: 900px;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-slot-games-jackpot-revealed__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--gold-color);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--glow-color);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-slot-games-jackpot-revealed__description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.page-slot-games-jackpot-revealed__btn-primary,
.page-slot-games-jackpot-revealed__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%;
}

.page-slot-games-jackpot-revealed__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: 2px solid var(--glow-color);
    box-shadow: 0 0 15px var(--glow-color);
}

.page-slot-games-jackpot-revealed__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--glow-color);
}

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

.page-slot-games-jackpot-revealed__btn-secondary:hover {
    background-color: var(--deep-green-color);
    transform: translateY(-3px);
    border-color: var(--glow-color);
}

.page-slot-games-jackpot-revealed__content-area,
.page-slot-games-jackpot-revealed__cta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.page-slot-games-jackpot-revealed__bg-section {
    background-color: var(--background-color);
}

.page-slot-games-jackpot-revealed__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-slot-games-jackpot-revealed__sub-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--text-main);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.page-slot-games-jackpot-revealed__paragraph {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-slot-games-jackpot-revealed__text-main {
    color: var(--text-main);
}

.page-slot-games-jackpot-revealed__text-secondary {
    color: var(--text-secondary);
}

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

.page-slot-games-jackpot-revealed__card,
.page-slot-games-jackpot-revealed__tip-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slot-games-jackpot-revealed__card:hover,
.page-slot-games-jackpot-revealed__tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games-jackpot-revealed__card-image,
.page-slot-games-jackpot-revealed__tip-image {
    width: 100%;
    height: auto;
    max-height: 200px; /* Consistent height for card images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-slot-games-jackpot-revealed__card-title,
.page-slot-games-jackpot-revealed__tip-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--gold-color);
}

.page-slot-games-jackpot-revealed__card-text,
.page-slot-games-jackpot-revealed__tip-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    flex-grow: 1;
}

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

.page-slot-games-jackpot-revealed__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-slot-games-jackpot-revealed__list-item {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-slot-games-jackpot-revealed__list-item strong {
    color: var(--text-main);
}

.page-slot-games-jackpot-revealed__center-btn {
    display: block;
    margin: 40px auto 20px;
    max-width: 300px;
}

.page-slot-games-jackpot-revealed__faq-list {
    margin-top: 30px;
}

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

.page-slot-games-jackpot-revealed__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.15rem;
    color: var(--text-main);
    background-color: var(--deep-green-color);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

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

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

.page-slot-games-jackpot-revealed__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--gold-color);
}

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

.page-slot-games-jackpot-revealed__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
}

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

.page-slot-games-jackpot-revealed__cta-section {
    text-align: center;
    background-color: var(--deep-green-color);
    padding: 80px 20px;
    border-radius: 12px;
    margin-top: 60px;
}

.page-slot-games-jackpot-revealed__cta-section .page-slot-games-jackpot-revealed__section-title {
    color: var(--gold-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.page-slot-games-jackpot-revealed__cta-section .page-slot-games-jackpot-revealed__paragraph {
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-main);
}

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

    .page-slot-games-jackpot-revealed__hero-section {
        padding: 10px 15px 40px;
    }

    .page-slot-games-jackpot-revealed__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-slot-games-jackpot-revealed__description {
        font-size: 1rem;
    }

    .page-slot-games-jackpot-revealed__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .page-slot-games-jackpot-revealed__btn-primary,
    .page-slot-games-jackpot-revealed__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-slot-games-jackpot-revealed__content-area,
    .page-slot-games-jackpot-revealed__cta-section {
        padding: 40px 15px;
    }

    .page-slot-games-jackpot-revealed__section-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-slot-games-jackpot-revealed__sub-title {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
        margin-top: 30px;
    }

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

    .page-slot-games-jackpot-revealed__card,
    .page-slot-games-jackpot-revealed__tip-card {
        padding: 20px;
    }

    .page-slot-games-jackpot-revealed__card-image,
    .page-slot-games-jackpot-revealed__tip-image,
    .page-slot-games-jackpot-revealed__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        display: block !important;
    }

    .page-slot-games-jackpot-revealed__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

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

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

    /* Ensure all containers with images/videos are constrained */
    .page-slot-games-jackpot-revealed__section,
    .page-slot-games-jackpot-revealed__card,
    .page-slot-games-jackpot-revealed__container,
    .page-slot-games-jackpot-revealed__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}