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

/* Base styles for the page content */
.page-slot-games-jackpot-strategy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text on dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

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

/* Header offset for the first content section */
.page-slot-games-jackpot-strategy__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background: linear-gradient(135deg, #017439, #005f2e); /* Brand green gradient */
    color: #ffffff;
    text-align: center;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden; /* For image positioning */
}

.page-slot-games-jackpot-strategy__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-slot-games-jackpot-strategy__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
    line-height: 1.2;
}

.page-slot-games-jackpot-strategy__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.page-slot-games-jackpot-strategy__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-slot-games-jackpot-strategy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15; /* Subtle background image */
}

/* General button styles */
.page-slot-games-jackpot-strategy__btn-primary,
.page-slot-games-jackpot-strategy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Break long words */
    max-width: 100%; /* Ensure button doesn't overflow */
}

.page-slot-games-jackpot-strategy__btn-primary {
    background-color: #C30808; /* Register/Login red */
    color: #FFFF00; /* Register/Login yellow font */
    border: 2px solid #C30808;
}

.page-slot-games-jackpot-strategy__btn-primary:hover {
    background-color: #e00b0b;
    border-color: #e00b0b;
    color: #ffffff;
}

.page-slot-games-jackpot-strategy__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-slot-games-jackpot-strategy__btn-secondary:hover {
    background-color: #ffffff;
    color: #017439;
}

.page-slot-games-jackpot-strategy__btn-large {
    font-size: 1.3em;
    padding: 18px 35px;
}

/* Section specific styles */
.page-slot-games-jackpot-strategy__section-title {
    font-size: 2.5em;
    color: #ffffff; /* Light text on dark background */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    font-weight: bold;
}

.page-slot-games-jackpot-strategy__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__text-block a {
    color: #FFFF00; /* Link color */
    text-decoration: underline;
}

.page-slot-games-jackpot-strategy__text-block a:hover {
    color: #e00b0b;
}

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

.page-slot-games-jackpot-strategy__dark-section {
    background-color: #0d0d0d; /* Slightly lighter than body background for subtle contrast */
    color: #ffffff;
}

.page-slot-games-jackpot-strategy__types-section {
    padding: 60px 0;
    background-color: #0a0a0a; /* Same as body for blending */
}

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

.page-slot-games-jackpot-strategy__card {
    background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.page-slot-games-jackpot-strategy__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-slot-games-jackpot-strategy__card-title {
    font-size: 1.6em;
    margin-bottom: 10px;
    color: #FFFF00; /* Yellow for card titles */
    font-weight: bold;
}

.page-slot-games-jackpot-strategy__card-text {
    font-size: 1em;
    color: #f0f0f0;
}

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

.page-slot-games-jackpot-strategy__strategy-list,
.page-slot-games-jackpot-strategy__mistake-list,
.page-slot-games-jackpot-strategy__step-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-slot-games-jackpot-strategy__list-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 5px solid #017439;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__list-title {
    font-size: 1.4em;
    color: #FFFF00;
    margin-bottom: 10px;
}

.page-slot-games-jackpot-strategy__image-inline {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-slot-games-jackpot-strategy__registration-guide-section {
    padding: 60px 0;
    background-color: #0a0a0a;
}

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

/* FAQ Section */
.page-slot-games-jackpot-strategy__faq-section {
    padding: 60px 0;
    background-color: #0a0a0a;
}

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

.page-slot-games-jackpot-strategy__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
}

.page-slot-games-jackpot-strategy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #017439; /* Brand green for FAQ questions */
    color: #ffffff;
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

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

.page-slot-games-jackpot-strategy__faq-question:hover {
    background-color: #005f2e;
}

.page-slot-games-jackpot-strategy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
}

.page-slot-games-jackpot-strategy__faq-answer {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05); /* Lighter background for answer */
    font-size: 1.1em;
    color: #f0f0f0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* CTA Section */
.page-slot-games-jackpot-strategy__cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(45deg, #017439, #005f2e);
    color: #ffffff;
}

.page-slot-games-jackpot-strategy__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games-jackpot-strategy__hero-title {
        font-size: 2.5em;
    }
    .page-slot-games-jackpot-strategy__section-title {
        font-size: 2em;
    }
    .page-slot-games-jackpot-strategy__card-title {
        font-size: 1.4em;
    }
    .page-slot-games-jackpot-strategy__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    /* General content area padding for mobile */
    .page-slot-games-jackpot-strategy__container {
        padding: 0 15px;
    }

    /* Hero section adjustments */
    .page-slot-games-jackpot-strategy__hero-section {
        padding-bottom: 40px;
    }
    .page-slot-games-jackpot-strategy__hero-title {
        font-size: 2em;
    }
    .page-slot-games-jackpot-strategy__hero-description {
        font-size: 1em;
    }
    .page-slot-games-jackpot-strategy__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* Image responsiveness */
    .page-slot-games-jackpot-strategy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Video responsiveness (if any, though none currently in HTML) */
    .page-slot-games-jackpot-strategy video,
    .page-slot-games-jackpot-strategy__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    .page-slot-games-jackpot-strategy__video-section,
    .page-slot-games-jackpot-strategy__video-container,
    .page-slot-games-jackpot-strategy__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-strategy__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }

    /* Button responsiveness */
    .page-slot-games-jackpot-strategy__btn-primary,
    .page-slot-games-jackpot-strategy__btn-secondary,
    .page-slot-games-jackpot-strategy a[class*="button"],
    .page-slot-games-jackpot-strategy 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; /* Add padding to ensure text isn't too close to edges */
        padding-right: 15px;
    }
    .page-slot-games-jackpot-strategy__hero-cta-buttons,
    .page-slot-games-jackpot-strategy__cta-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important; /* Ensure buttons wrap if side-by-side */
        gap: 15px;
    }
    .page-slot-games-jackpot-strategy__cta-content {
        flex-direction: column; /* Stack buttons vertically in CTA */
    }

    /* Section padding adjustments */
    .page-slot-games-jackpot-strategy__introduction-section,
    .page-slot-games-jackpot-strategy__types-section,
    .page-slot-games-jackpot-strategy__strategies-section,
    .page-slot-games-jackpot-strategy__registration-guide-section,
    .page-slot-games-jackpot-strategy__mistakes-section,
    .page-slot-games-jackpot-strategy__faq-section,
    .page-slot-games-jackpot-strategy__cta-section {
        padding: 40px 0;
    }

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

    .page-slot-games-jackpot-strategy__cards-grid {
        grid-template-columns: 1fr;
    }

    .page-slot-games-jackpot-strategy__list-item {
        padding: 15px;
    }
    .page-slot-games-jackpot-strategy__list-title {
        font-size: 1.2em;
    }
    .page-slot-games-jackpot-strategy__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-slot-games-jackpot-strategy__faq-answer {
        padding: 15px;
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-slot-games-jackpot-strategy__hero-title {
        font-size: 1.8em;
    }
    .page-slot-games-jackpot-strategy__section-title {
        font-size: 1.6em;
    }
    .page-slot-games-jackpot-strategy__btn-large {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}