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

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

/* Base styles for the page content, ensuring contrast with dark body background */
.page-slot-games-jackpot-strategy {
    background-color: var(--page-background-color); /* Dark background */
    color: var(--page-text-main); /* Light text for contrast */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 50px; /* Ensure space above footer */
}

/* Hero Section */
.page-slot-games-jackpot-strategy__hero-section {
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px; /* Small top padding, larger bottom for content */
    background-color: var(--page-deep-green-color); /* Slightly different dark background */
    position: relative;
    overflow: hidden;
}

.page-slot-games-jackpot-strategy__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for hero image */
    margin-bottom: 20px;
}

.page-slot-games-jackpot-strategy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-slot-games-jackpot-strategy__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1; /* Ensure content is above any background elements */
}

.page-slot-games-jackpot-strategy__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
    color: var(--page-gold-color); /* Gold color for main title */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5); /* Subtle glow */
}

.page-slot-games-jackpot-strategy__hero-description {
    font-size: 1.2em;
    color: var(--page-text-secondary); /* Secondary text color */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Area */
.page-slot-games-jackpot-strategy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--page-text-main); /* Light text for main content */
}

.page-slot-games-jackpot-strategy__section-intro,
.page-slot-games-jackpot-strategy__feature-block,
.page-slot-games-jackpot-strategy__faq-section,
.page-slot-games-jackpot-strategy__conclusion-section {
    margin-bottom: 60px;
    background-color: var(--page-card-bg); /* Darker background for content blocks */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--page-border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games-jackpot-strategy__section-title {
    font-size: 2.2em;
    color: var(--page-main-color); /* Main brand color for section titles */
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
    border-bottom: 2px solid var(--page-divider-color);
    padding-bottom: 15px;
}

.page-slot-games-jackpot-strategy__sub-title {
    font-size: 1.6em;
    color: var(--page-secondary-color); /* Secondary brand color for sub titles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slot-games-jackpot-strategy__section-description,
.page-slot-games-jackpot-strategy p {
    font-size: 1em;
    color: var(--page-text-secondary); /* Secondary text color for paragraphs */
    margin-bottom: 1em;
}

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

.page-slot-games-jackpot-strategy__list li {
    margin-bottom: 10px;
    font-size: 1em;
}

.page-slot-games-jackpot-strategy__list li strong {
    color: var(--page-text-main); /* Main text color for strong tags in lists */
}

.page-slot-games-jackpot-strategy__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

/* Buttons */
.page-slot-games-jackpot-strategy__btn-primary,
.page-slot-games-jackpot-strategy__cta-button {
    display: inline-block;
    background: var(--page-button-gradient);
    color: var(--page-text-main); /* Light text on dark/gradient button */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-slot-games-jackpot-strategy__btn-primary:hover,
.page-slot-games-jackpot-strategy__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    filter: brightness(1.1); /* Slightly brighter on hover */
}

.page-slot-games-jackpot-strategy__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* FAQ Section */
.page-slot-games-jackpot-strategy__faq-section {
    margin-top: 60px;
}

.page-slot-games-jackpot-strategy__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-slot-games-jackpot-strategy__faq-item {
    background-color: var(--page-card-bg); /* Darker background for FAQ items */
    border: 1px solid var(--page-border-color);
    border-radius: 8px;
    overflow: hidden;
    color: var(--page-text-secondary);
}

.page-slot-games-jackpot-strategy__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--page-text-main); /* Light text for FAQ questions */
    background-color: var(--page-deep-green-color); /* Slightly different background for question */
    border-bottom: 1px solid var(--page-divider-color);
    transition: background-color 0.3s ease;
}

.page-slot-games-jackpot-strategy__faq-item summary:hover {
    background-color: var(--page-main-color); /* Hover effect for question */
}

.page-slot-games-jackpot-strategy__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for Webkit browsers */
}

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

.page-slot-games-jackpot-strategy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--page-gold-color); /* Gold color for toggle icon */
}

.page-slot-games-jackpot-strategy__faq-item[open] .page-slot-games-jackpot-strategy__faq-toggle {
    color: var(--page-gold-color); /* Keep gold color when open */
}

.page-slot-games-jackpot-strategy__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: var(--page-text-secondary); /* Secondary text for answers */
    background-color: var(--page-card-bg); /* Card background for answer */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games-jackpot-strategy__hero-content {
        padding: 0 15px;
    }
    .page-slot-games-jackpot-strategy__main-title {
        font-size: clamp(1.8em, 5vw, 2.8em);
    }
    .page-slot-games-jackpot-strategy__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-slot-games-jackpot-strategy__hero-section {
        padding: 10px 15px 30px;
    }
    .page-slot-games-jackpot-strategy__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
    }
    .page-slot-games-jackpot-strategy__hero-description {
        font-size: 1em;
    }
    .page-slot-games-jackpot-strategy__btn-primary,
    .page-slot-games-jackpot-strategy__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-slot-games-jackpot-strategy__cta-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px; /* Space between buttons if multiple */
    }
    .page-slot-games-jackpot-strategy__content-area {
        padding: 30px 15px;
    }
    .page-slot-games-jackpot-strategy__section-title {
        font-size: 1.8em;
    }
    .page-slot-games-jackpot-strategy__sub-title {
        font-size: 1.4em;
    }
    .page-slot-games-jackpot-strategy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: unset;
        min-height: unset;
    }
    .page-slot-games-jackpot-strategy__section-intro,
    .page-slot-games-jackpot-strategy__feature-block,
    .page-slot-games-jackpot-strategy__faq-section,
    .page-slot-games-jackpot-strategy__conclusion-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-slot-games-jackpot-strategy__hero-image-wrapper {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .page-slot-games-jackpot-strategy__main-title {
        font-size: clamp(1.2em, 7vw, 2em);
    }
    .page-slot-games-jackpot-strategy__section-title {
        font-size: 1.6em;
    }
    .page-slot-games-jackpot-strategy__sub-title {
        font-size: 1.2em;
    }
    .page-slot-games-jackpot-strategy__faq-item summary {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-slot-games-jackpot-strategy__faq-answer {
        padding: 15px 20px;
    }
}