/* style/slot-games-jackpot-secrets.css */
.page-slot-games-jackpot-secrets {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: transparent; /* Body background handled by shared.css */
}

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

.page-slot-games-jackpot-secrets__dark-bg {
    background-color: #1a1a1a; /* Slightly lighter dark for contrast with body #121212 */
    color: #ffffff;
}

.page-slot-games-jackpot-secrets__main-title {
    font-size: 42px;
    font-weight: 700;
    color: #FFD700; /* Gold color for main title */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-slot-games-jackpot-secrets__description {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-slot-games-jackpot-secrets__section-title {
    font-size: 36px;
    font-weight: 700;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

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

.page-slot-games-jackpot-secrets__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-slot-games-jackpot-secrets__list-item {
    margin-bottom: 10px;
    font-size: 17px;
    color: #f0f0f0;
}

.page-slot-games-jackpot-secrets__list-item strong {
    color: #FFD700;
}

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

.page-slot-games-jackpot-secrets__btn-primary,
.page-slot-games-jackpot-secrets__btn-secondary,
.page-slot-games-jackpot-secrets__link-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-slot-games-jackpot-secrets__btn-primary {
    background-color: #FFD700;
    color: #121212; /* Dark text for gold background */
    border: 2px solid #FFD700;
}

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

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

.page-slot-games-jackpot-secrets__btn-secondary:hover {
    background-color: #FFD700;
    color: #121212;
}

.page-slot-games-jackpot-secrets__link-button {
    background-color: #8B0000;
    color: #ffffff;
    border: 2px solid #8B0000;
}

.page-slot-games-jackpot-secrets__link-button:hover {
    background-color: #6a0000;
    border-color: #6a0000;
}

/* Hero Section */
.page-slot-games-jackpot-secrets__hero-section {
    position: relative;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0; /* Assuming shared.css handles body padding-top */
    margin-top: 0;
    overflow: hidden;
}

.page-slot-games-jackpot-secrets__hero-container {
    position: relative;
    width: 100%;
    max-height: 700px; /* Limit hero height */
    overflow: hidden;
}

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

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

.page-slot-games-jackpot-secrets__strategy-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-jackpot-secrets__strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games-jackpot-secrets__card-title {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-slot-games-jackpot-secrets__card-text {
    font-size: 16px;
    color: #f0f0f0;
}

/* Images within content */
.page-slot-games-jackpot-secrets__image-wrapper {
    margin: 40px auto;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-slot-games-jackpot-secrets__image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

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

.page-slot-games-jackpot-secrets__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #222222; /* Slightly different dark for FAQ items */
}

.page-slot-games-jackpot-secrets__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background-color: #333333; /* Darker background for question */
    border: 1px solid #444444;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-slot-games-jackpot-secrets__faq-question:hover {
    background-color: #444444;
    border-color: #555555;
}

.page-slot-games-jackpot-secrets__faq-question:active {
    background-color: #555555;
}

.page-slot-games-jackpot-secrets__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: #FFD700;
}

.page-slot-games-jackpot-secrets__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: #FFD700;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.page-slot-games-jackpot-secrets__faq-item.active .page-slot-games-jackpot-secrets__faq-toggle {
    color: #ffffff;
}

.page-slot-games-jackpot-secrets__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 20px;
    opacity: 0;
    color: #f0f0f0;
}

.page-slot-games-jackpot-secrets__faq-item.active .page-slot-games-jackpot-secrets__faq-answer {
    max-height: 2000px !important;
    padding: 20px !important;
    opacity: 1;
    background-color: #2a2a2a; /* Answer background */
    border-radius: 0 0 5px 5px;
    border-left: 1px solid #444444;
    border-right: 1px solid #444444;
    border-bottom: 1px solid #444444;
}

/* Links within content */
.page-slot-games-jackpot-secrets a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-slot-games-jackpot-secrets a:hover {
    color: #e6c200;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games-jackpot-secrets__main-title {
        font-size: 38px;
    }
    .page-slot-games-jackpot-secrets__section-title {
        font-size: 32px;
    }
    .page-slot-games-jackpot-secrets__strategy-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-slot-games-jackpot-secrets {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-slot-games-jackpot-secrets__container {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-slot-games-jackpot-secrets__main-title {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .page-slot-games-jackpot-secrets__description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .page-slot-games-jackpot-secrets__section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .page-slot-games-jackpot-secrets__text-block,
    .page-slot-games-jackpot-secrets__list-item,
    .page-slot-games-jackpot-secrets__card-text {
        font-size: 15px;
    }

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

    .page-slot-games-jackpot-secrets__btn-primary,
    .page-slot-games-jackpot-secrets__btn-secondary,
    .page-slot-games-jackpot-secrets__link-button {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 16px;
    }

    .page-slot-games-jackpot-secrets__hero-container {
        max-height: 400px; /* Adjust hero height for mobile */
    }

    .page-slot-games-jackpot-secrets__image-wrapper {
        margin: 30px auto;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }
    .page-slot-games-jackpot-secrets__image-wrapper img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-slot-games-jackpot-secrets__strategy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-slot-games-jackpot-secrets__strategy-card {
        padding: 20px;
    }

    .page-slot-games-jackpot-secrets__card-title {
        font-size: 20px;
    }

    .page-slot-games-jackpot-secrets__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-slot-games-jackpot-secrets__faq-question h3 {
        font-size: 16px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-slot-games-jackpot-secrets__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 22px;
    }
    
    .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;
    }
}