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

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

/* Base styles for the page, assuming body has --bg-color from shared.css */
/* If body is dark, use light text. If body is light, use dark text. */
/* Given custom background color #08160F (dark), text should be light. */
.page-slot-games-jackpot-guide {
    font-family: Arial, sans-serif;
    color: var(--bigboss-text-main); /* Light text for dark background */
    background-color: var(--bigboss-background); /* Explicitly set for main content area */
    line-height: 1.6;
}

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

.page-slot-games-jackpot-guide__container--center {
    text-align: center;
}

.page-slot-games-jackpot-guide__section {
    padding: 60px 0;
    position: relative;
}

.page-slot-games-jackpot-guide__dark-section {
    background-color: var(--bigboss-deep-green);
    color: var(--bigboss-text-main);
}

.page-slot-games-jackpot-guide__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--bigboss-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.6);
}

.page-slot-games-jackpot-guide__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--bigboss-text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
}

.page-slot-games-jackpot-guide__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--bigboss-green-primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-slot-games-jackpot-guide__sub-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--bigboss-green-secondary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-slot-games-jackpot-guide__description,
.page-slot-games-jackpot-guide p {
    font-size: 1.1rem;
    color: var(--bigboss-text-main);
    margin-bottom: 20px;
}

.page-slot-games-jackpot-guide p a {
    color: var(--bigboss-gold);
    text-decoration: underline;
}

.page-slot-games-jackpot-guide p a:hover {
    color: var(--bigboss-green-secondary);
}

.page-slot-games-jackpot-guide__small-text {
    font-size: 0.9rem;
    color: var(--bigboss-text-secondary);
    margin-top: 20px;
}

/* Hero Section */
.page-slot-games-jackpot-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
    background-color: var(--bigboss-background);
    overflow: hidden;
}

.page-slot-games-jackpot-guide__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
}

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

.page-slot-games-jackpot-guide__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
    margin-top: -80px; /* Overlap slightly with image for visual flow */
}

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

.page-slot-games-jackpot-guide__btn-primary,
.page-slot-games-jackpot-guide__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    box-sizing: border-box;
}

.page-slot-games-jackpot-guide__btn-primary {
    background: var(--bigboss-gradient-button);
    color: var(--bigboss-text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-slot-games-jackpot-guide__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
    transform: translateY(-2px);
}

.page-slot-games-jackpot-guide__btn-secondary {
    background-color: transparent;
    color: var(--bigboss-green-secondary);
    border: 2px solid var(--bigboss-green-secondary);
}

.page-slot-games-jackpot-guide__btn-secondary:hover {
    background-color: var(--bigboss-green-secondary);
    color: var(--bigboss-text-main);
    transform: translateY(-2px);
}

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

.page-slot-games-jackpot-guide__grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.page-slot-games-jackpot-guide__text-block {
    display: flex;
    flex-direction: column;
}

.page-slot-games-jackpot-guide__image-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cards */
.page-slot-games-jackpot-guide__card {
    background-color: var(--bigboss-card-bg);
    border: 1px solid var(--bigboss-border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-jackpot-guide__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

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

/* Content Images */
.page-slot-games-jackpot-guide__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot-guide__content-image--offset {
    margin-top: 20px;
}

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

/* List styles */
.page-slot-games-jackpot-guide__list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-slot-games-jackpot-guide__list-item {
    background-color: var(--bigboss-card-bg);
    border-left: 5px solid var(--bigboss-green-primary);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
    color: var(--bigboss-text-main);
}

.page-slot-games-jackpot-guide__list-item strong {
    color: var(--bigboss-gold);
}

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

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

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

.page-slot-games-jackpot-guide__faq-item summary::-webkit-details-marker {
    display: none;
}

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

.page-slot-games-jackpot-guide__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-slot-games-jackpot-guide__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

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

.page-slot-games-jackpot-guide__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1.1rem;
    color: var(--bigboss-text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games-jackpot-guide__grid-2-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-slot-games-jackpot-guide__section {
        padding: 40px 0;
    }

    .page-slot-games-jackpot-guide__main-title {
        font-size: 2.2rem;
    }

    .page-slot-games-jackpot-guide__section-title {
        font-size: 1.8rem;
    }

    .page-slot-games-jackpot-guide__sub-title {
        font-size: 1.4rem;
    }

    .page-slot-games-jackpot-guide__hero-content {
        margin-top: -40px; /* Adjust overlap for smaller screens */
    }

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

    .page-slot-games-jackpot-guide__btn-primary,
    .page-slot-games-jackpot-guide__btn-secondary {
        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;
    }

    /* Ensure all images are responsive */
    .page-slot-games-jackpot-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Ensure all image containers are responsive */
    .page-slot-games-jackpot-guide__hero-image-wrapper,
    .page-slot-games-jackpot-guide__card,
    .page-slot-games-jackpot-guide__grid,
    .page-slot-games-jackpot-guide__grid-2-col,
    .page-slot-games-jackpot-guide__text-block,
    .page-slot-games-jackpot-guide__image-block,
    .page-slot-games-jackpot-guide__feature-image,
    .page-slot-games-jackpot-guide__container {
        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-guide__card-image {
        height: auto !important; /* Allow height to adjust naturally */
    }

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

    .page-slot-games-jackpot-guide__faq-item summary {
        font-size: 1rem;
        padding: 15px;
    }

    .page-slot-games-jackpot-guide__faq-answer {
        padding: 0 15px 15px 15px;
    }

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

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

    .page-slot-games-jackpot-guide__section-title {
        font-size: 1.5rem;
    }

    .page-slot-games-jackpot-guide__btn-primary,
    .page-slot-games-jackpot-guide__btn-secondary {
        padding: 12px 20px;
        font-size: 1rem;
    }
}