/* style/jackpot-slots-features.css */

/* Base styles for the page content */
.page-jackpot-slots-features {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Dark body background #121212, so use light text */
    background-color: transparent; /* Main content background will be body's #121212 */
}

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

.page-jackpot-slots-features__section {
    padding: 60px 0;
    text-align: center;
}

.page-jackpot-slots-features__heading {
    font-size: 2.8em;
    color: #26A9E0; /* Brand color for headings */
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-jackpot-slots-features__text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0; /* Slightly off-white for readability on dark background */
}

.page-jackpot-slots-features__text a {
    color: #26A9E0; /* Brand color for links */
    text-decoration: none;
}

.page-jackpot-slots-features__text a:hover {
    text-decoration: underline;
}

/* Buttons */
.page-jackpot-slots-features__btn-primary,
.page-jackpot-slots-features__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons are responsive */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-jackpot-slots-features__btn-primary {
    background-color: #26A9E0; /* Brand primary color */
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-jackpot-slots-features__btn-primary:hover {
    background-color: #1a78a1;
    border-color: #1a78a1;
}

.page-jackpot-slots-features__btn-secondary {
    background-color: transparent;
    color: #26A9E0; /* Brand primary color */
    border: 2px solid #26A9E0;
}

.page-jackpot-slots-features__btn-secondary:hover {
    background-color: #26A9E0;
    color: #FFFFFF;
}

/* Hero Section */
.page-jackpot-slots-features__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background-color: #1a1a1a; /* Slightly lighter dark background for hero */
}

.page-jackpot-slots-features__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-jackpot-slots-features__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Make background image subtle */
    display: block;
}

.page-jackpot-slots-features__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    border-radius: 10px;
}

.page-jackpot-slots-features__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-jackpot-slots-features__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-jackpot-slots-features__hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    gap: 20px;
}

/* Intro Section */
.page-jackpot-slots-features__intro-section .page-jackpot-slots-features__image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.page-jackpot-slots-features__features-section {
    background-color: #1a1a1a; /* Darker section background */
}

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

.page-jackpot-slots-features__card {
    background-color: rgba(255, 255, 255, 0.08); /* Light transparent background for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff; /* Light text for card content */
}

.page-jackpot-slots-features__card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-jackpot-slots-features__card-image {
    width: 100%;
    height: 200px; /* Fixed height for card images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-jackpot-slots-features__card-title {
    font-size: 1.6em;
    color: #26A9E0; /* Brand color for card titles */
    margin-bottom: 15px;
    text-align: center;
}

.page-jackpot-slots-features__card-text {
    font-size: 1em;
    color: #e0e0e0;
}

/* Diversity Section */
.page-jackpot-slots-features__diversity-section {
    background-color: #121212; /* Body background color */
}

.page-jackpot-slots-features__game-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-jackpot-slots-features__list-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.page-jackpot-slots-features__list-item:hover {
    transform: translateY(-5px);
}

.page-jackpot-slots-features__list-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

.page-jackpot-slots-features__list-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
    text-align: center;
}

.page-jackpot-slots-features__list-description {
    font-size: 0.95em;
    color: #e0e0e0;
}

/* Why Choose Section */
.page-jackpot-slots-features__why-choose-section {
    background-color: #1a1a1a;
}

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

.page-jackpot-slots-features__advantage-grid .page-jackpot-slots-features__card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* How To Play Section */
.page-jackpot-slots-features__how-to-play-section {
    background-color: #121212;
}

.page-jackpot-slots-features__step-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-jackpot-slots-features__step-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.page-jackpot-slots-features__step-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-jackpot-slots-features__step-description {
    font-size: 1em;
    color: #e0e0e0;
}

.page-jackpot-slots-features__step-description a {
    color: #26A9E0;
    text-decoration: none;
}

.page-jackpot-slots-features__step-description a:hover {
    text-decoration: underline;
}

.page-jackpot-slots-features__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* FAQ Section */
.page-jackpot-slots-features__faq-section {
    background-color: #1a1a1a;
}

.page-jackpot-slots-features__faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-jackpot-slots-features__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-jackpot-slots-features__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #26A9E0;
    transition: background-color 0.3s ease;
}

.page-jackpot-slots-features__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.page-jackpot-slots-features__faq-question h3 {
    margin: 0;
    color: #26A9E0;
}

.page-jackpot-slots-features__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #ffffff;
}

.page-jackpot-slots-features__faq-item.active .page-jackpot-slots-features__faq-toggle {
    transform: rotate(45deg); /* Change to X or minus sign */
}

.page-jackpot-slots-features__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #e0e0e0;
    text-align: left;
}

.page-jackpot-slots-features__faq-item.active .page-jackpot-slots-features__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 15px 25px 25px;
}

.page-jackpot-slots-features__faq-answer p {
    margin: 0;
    color: #e0e0e0;
}

.page-jackpot-slots-features__faq-answer a {
    color: #26A9E0;
    text-decoration: none;
}

.page-jackpot-slots-features__faq-answer a:hover {
    text-decoration: underline;
}

/* CTA Section */
.page-jackpot-slots-features__cta-section {
    background-color: #26A9E0; /* Brand color background for final CTA */
    color: #ffffff;
    padding: 80px 0;
}

.page-jackpot-slots-features__cta-section .page-jackpot-slots-features__heading {
    color: #FFFFFF;
}

.page-jackpot-slots-features__cta-section .page-jackpot-slots-features__text {
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-jackpot-slots-features__cta-section .page-jackpot-slots-features__btn-primary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border-color: #FFFFFF;
}

.page-jackpot-slots-features__cta-section .page-jackpot-slots-features__btn-primary:hover {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
    color: #1a78a1;
}

.page-jackpot-slots-features__cta-section .page-jackpot-slots-features__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.page-jackpot-slots-features__cta-section .page-jackpot-slots-features__btn-secondary:hover {
    background-color: #FFFFFF;
    color: #26A9E0;
}

/* Image specific styles - ensure no filters */
.page-jackpot-slots-features img {
    border-radius: 8px; /* Example style, no filters */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Example style, no filters */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-jackpot-slots-features__hero-title {
        font-size: 3em;
    }
    .page-jackpot-slots-features__hero-description {
        font-size: 1.1em;
    }
    .page-jackpot-slots-features__heading {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .page-jackpot-slots-features__hero-section {
        min-height: 500px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile offset */
    }
    .page-jackpot-slots-features__hero-content {
        padding: 15px;
    }
    .page-jackpot-slots-features__hero-title {
        font-size: 2.5em;
    }
    .page-jackpot-slots-features__hero-description {
        font-size: 1em;
    }
    .page-jackpot-slots-features__heading {
        font-size: 2em;
    }
    .page-jackpot-slots-features__text {
        font-size: 0.95em;
    }
    .page-jackpot-slots-features__btn-primary,
    .page-jackpot-slots-features__btn-secondary {
        width: calc(100% - 30px); /* Full width with padding */
        margin: 10px 15px; /* Adjust margin for full width */
        padding: 12px 20px;
        font-size: 1em;
        max-width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-jackpot-slots-features__hero-buttons,
    .page-jackpot-slots-features__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Images responsive */
    .page-jackpot-slots-features img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-jackpot-slots-features__section,
    .page-jackpot-slots-features__card,
    .page-jackpot-slots-features__container,
    .page-jackpot-slots-features__feature-grid,
    .page-jackpot-slots-features__game-list,
    .page-jackpot-slots-features__advantage-grid,
    .page-jackpot-slots-features__step-list,
    .page-jackpot-slots-features__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }
    .page-jackpot-slots-features__card-image,
    .page-jackpot-slots-features__list-image {
        height: auto !important; /* Allow height to adjust */
        min-height: 200px !important; /* Enforce min height for content images */
    }
    .page-jackpot-slots-features__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-jackpot-slots-features__faq-answer {
        padding: 0 20px;
    }
    .page-jackpot-slots-features__faq-item.active .page-jackpot-slots-features__faq-answer {
        padding: 10px 20px 20px;
    }
}

@media (max-width: 480px) {
    .page-jackpot-slots-features__hero-title {
        font-size: 2em;
    }
    .page-jackpot-slots-features__heading {
        font-size: 1.8em;
    }
    .page-jackpot-slots-features__card-title,
    .page-jackpot-slots-features__list-title,
    .page-jackpot-slots-features__step-title {
        font-size: 1.3em;
    }
}