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

/* Base styles for the page content, ensuring light text on dark body background */
.page-slot-games-jackpot-secrets {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: #121212; /* Inherited from body, but explicitly set for clarity */
}

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

/* Hero Section */
.page-slot-games-jackpot-secrets__hero-section {
    position: relative;
    width: 100%;
    height: 700px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-slot-games-jackpot-secrets__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-slot-games-jackpot-secrets__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-slot-games-jackpot-secrets__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    color: #ffffff;
}

.page-slot-games-jackpot-secrets__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* Buttons */
.page-slot-games-jackpot-secrets__btn-primary,
.page-slot-games-jackpot-secrets__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;
    margin: 10px;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games-jackpot-secrets__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-slot-games-jackpot-secrets__btn-primary:hover {
    background-color: #1a7fb2;
    border-color: #1a7fb2;
}

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

.page-slot-games-jackpot-secrets__btn-secondary:hover {
    background-color: #ffffff;
    color: #26A9E0;
}

/* Section Styling */
.page-slot-games-jackpot-secrets__introduction-section,
.page-slot-games-jackpot-secrets__mechanics-section,
.page-slot-games-jackpot-secrets__jackpot-types-section,
.page-slot-games-jackpot-secrets__strategy-section,
.page-slot-games-jackpot-secrets__advanced-tips-section,
.page-slot-games-jackpot-secrets__special-features-section,
.page-slot-games-jackpot-secrets__video-section,
.page-slot-games-jackpot-secrets__faq-section,
.page-slot-games-jackpot-secrets__cta-section {
    padding: 80px 0;
}

.page-slot-games-jackpot-secrets__dark-bg {
    background-color: #1e1e1e; /* Slightly lighter dark for sections */
    color: #ffffff;
}

.page-slot-games-jackpot-secrets__light-bg {
    background-color: #ffffff;
    color: #333333; /* Dark text on light background */
}

.page-slot-games-jackpot-secrets__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    color: inherit; /* Inherit color from section (dark/light bg) */
}

.page-slot-games-jackpot-secrets__section-paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-slot-games-jackpot-secrets__grid--two-columns {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Cards */
.page-slot-games-jackpot-secrets__card {
    background-color: #ffffff;
    color: #333333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-slot-games-jackpot-secrets__card--dark {
    background-color: #2a2a2a;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games-jackpot-secrets__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-slot-games-jackpot-secrets__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: inherit;
}

.page-slot-games-jackpot-secrets__card-description {
    font-size: 1em;
    color: inherit;
}

/* List Styles for Advanced Tips */
.page-slot-games-jackpot-secrets__list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-slot-games-jackpot-secrets__list-item {
    background-color: #2a2a2a;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

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

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

/* Special Features Cards */
.page-slot-games-jackpot-secrets__feature-card {
    background-color: #f5f5f5;
    color: #333333;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-slot-games-jackpot-secrets__feature-description {
    font-size: 1em;
    color: #333333;
}

/* Video Section */
.page-slot-games-jackpot-secrets__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    box-sizing: border-box; /* Ensure padding/border included in width */
}

.page-slot-games-jackpot-secrets__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block; /* Ensure it behaves as a block element */
    max-width: 100%;
    object-fit: contain;
    cursor: pointer;
}

/* FAQ Section */
.page-slot-games-jackpot-secrets__faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games-jackpot-secrets__faq-item {
    background-color: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-slot-games-jackpot-secrets__faq-question:hover {
    background-color: #1a7fb2;
}

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

.page-slot-games-jackpot-secrets__faq-item.active .page-slot-games-jackpot-secrets__faq-toggle {
    transform: rotate(45deg);
}

.page-slot-games-jackpot-secrets__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background-color: #ffffff;
    color: #333333;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-slot-games-jackpot-secrets__faq-item.active .page-slot-games-jackpot-secrets__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to contain content */
    padding: 20px !important;
}

.page-slot-games-jackpot-secrets__faq-answer p {
    margin: 0;
    padding-bottom: 10px; /* Add some spacing at the bottom of the paragraph */
}

/* CTA Section */
.page-slot-games-jackpot-secrets__cta-section {
    text-align: center;
    padding: 80px 20px;
}

.page-slot-games-jackpot-secrets__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games-jackpot-secrets__hero-title {
        font-size: 2.8em;
    }
    .page-slot-games-jackpot-secrets__hero-description {
        font-size: 1.1em;
    }
    .page-slot-games-jackpot-secrets__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-slot-games-jackpot-secrets__hero-section {
        height: 500px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }
    .page-slot-games-jackpot-secrets__hero-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-slot-games-jackpot-secrets__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-slot-games-jackpot-secrets__btn-primary,
    .page-slot-games-jackpot-secrets__btn-secondary {
        padding: 12px 20px;
        font-size: 0.9em;
        margin: 5px;
        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-secrets__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-slot-games-jackpot-secrets__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-slot-games-jackpot-secrets__section-paragraph {
        font-size: 0.95em;
    }
    .page-slot-games-jackpot-secrets__grid {
        grid-template-columns: 1fr;
    }
    .page-slot-games-jackpot-secrets__grid--two-columns {
        grid-template-columns: 1fr;
    }
    .page-slot-games-jackpot-secrets__card,
    .page-slot-games-jackpot-secrets__list-item,
    .page-slot-games-jackpot-secrets__feature-card {
        padding: 20px;
    }
    .page-slot-games-jackpot-secrets__card-title,
    .page-slot-games-jackpot-secrets__list-title,
    .page-slot-games-jackpot-secrets__feature-title {
        font-size: 1.2em;
    }
    .page-slot-games-jackpot-secrets__container {
        padding: 15px;
    }
    
    /* Mobile image responsiveness */
    .page-slot-games-jackpot-secrets img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important; /* Enforce min size even on mobile */
        min-height: 200px !important; /* Enforce min size even on mobile */
    }
    
    /* Mobile video responsiveness */
    .page-slot-games-jackpot-secrets video,
    .page-slot-games-jackpot-secrets__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-slot-games-jackpot-secrets__video-section,
    .page-slot-games-jackpot-secrets__video-container,
    .page-slot-games-jackpot-secrets__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Content area padding for mobile */
    .page-slot-games-jackpot-secrets__introduction-section,
    .page-slot-games-jackpot-secrets__mechanics-section,
    .page-slot-games-jackpot-secrets__jackpot-types-section,
    .page-slot-games-jackpot-secrets__strategy-section,
    .page-slot-games-jackpot-secrets__advanced-tips-section,
    .page-slot-games-jackpot-secrets__special-features-section,
    .page-slot-games-jackpot-secrets__video-section,
    .page-slot-games-jackpot-secrets__faq-section,
    .page-slot-games-jackpot-secrets__cta-section {
      padding: 40px 0; /* Adjust vertical padding */
    }

    .page-slot-games-jackpot-secrets__faq-question {
      font-size: 1.1em;
      padding: 15px;
    }
    .page-slot-games-jackpot-secrets__faq-answer {
      padding: 0 15px;
    }
    .page-slot-games-jackpot-secrets__faq-item.active .page-slot-games-jackpot-secrets__faq-answer {
      padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-slot-games-jackpot-secrets__hero-section {
        height: 400px;
    }
    .page-slot-games-jackpot-secrets__hero-title {
        font-size: 1.6em;
    }
}