/* style/blog-slot-jackpot-secrets.css */
.page-blog-slot-jackpot-secrets {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background from shared.css */
}

.page-blog-slot-jackpot-secrets__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-blog-slot-jackpot-secrets__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-blog-slot-jackpot-secrets__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-blog-slot-jackpot-secrets__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-slot-jackpot-secrets__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    color: #FFFFFF;
}

.page-blog-slot-jackpot-secrets__main-title {
    font-size: 2.8em;
    font-weight: bold;
    color: #FFFF00; /* Custom color for H1 */
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-slot-jackpot-secrets__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.page-blog-slot-jackpot-secrets__btn-primary,
.page-blog-slot-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;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
}

.page-blog-slot-jackpot-secrets__btn-primary {
    background-color: #C30808; /* Custom color for primary buttons */
    color: #FFFF00; /* Custom font color for primary buttons */
    border: 2px solid #C30808;
}

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

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

.page-blog-slot-jackpot-secrets__btn-secondary:hover {
    background-color: #017439;
    color: #FFFFFF;
}

/* Content Sections */
.page-blog-slot-jackpot-secrets__content-section {
    padding: 60px 0;
}

.page-blog-slot-jackpot-secrets__dark-bg {
    background-color: #0d0d0d; /* Slightly lighter than body for contrast */
    color: #ffffff;
}

.page-blog-slot-jackpot-secrets__content-section:not(.page-blog-slot-jackpot-secrets__dark-bg) {
    background-color: #ffffff;
    color: #333333;
}

.page-blog-slot-jackpot-secrets__section-title {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #017439;
}

.page-blog-slot-jackpot-secrets__dark-bg .page-blog-slot-jackpot-secrets__section-title {
    color: #FFFF00;
}

.page-blog-slot-jackpot-secrets__sub-title {
    font-size: 1.6em;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #017439;
}

.page-blog-slot-jackpot-secrets__dark-bg .page-blog-slot-jackpot-secrets__sub-title {
    color: #FFFFFF;
}

.page-blog-slot-jackpot-secrets p {
    margin-bottom: 1em;
    font-size: 1.1em;
}

.page-blog-slot-jackpot-secrets__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-blog-slot-jackpot-secrets__faq-section {
    background-color: #ffffff;
    color: #333333;
    padding: 60px 0;
}

.page-blog-slot-jackpot-secrets__faq-list {
    margin-top: 30px;
}

.page-blog-slot-jackpot-secrets__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-slot-jackpot-secrets__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #f0f0f0;
    color: #333333;
    position: relative;
    list-style: none;
}

.page-blog-slot-jackpot-secrets__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-slot-jackpot-secrets__faq-question::marker {
    display: none;
}

.page-blog-slot-jackpot-secrets__faq-qtext {
    flex-grow: 1;
}

.page-blog-slot-jackpot-secrets__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #017439;
}

.page-blog-slot-jackpot-secrets__faq-item[open] .page-blog-slot-jackpot-secrets__faq-toggle {
    content: "−";
}

.page-blog-slot-jackpot-secrets__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1.05em;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-blog-slot-jackpot-secrets__faq-item[open] .page-blog-slot-jackpot-secrets__faq-answer {
    max-height: 2000px; /* Sufficiently large value */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-slot-jackpot-secrets__main-title {
        font-size: 2.5em;
    }
    .page-blog-slot-jackpot-secrets__section-title {
        font-size: 2em;
    }
    .page-blog-slot-jackpot-secrets__sub-title {
        font-size: 1.4em;
    }
    .page-blog-slot-jackpot-secrets__container {
        padding: 20px 30px;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-blog-slot-jackpot-secrets__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }
    .page-blog-slot-jackpot-secrets__main-title {
        font-size: 2em !important;
        padding: 0 15px;
    }
    .page-blog-slot-jackpot-secrets__hero-description {
        font-size: 1em;
        padding: 0 15px;
    }
    .page-blog-slot-jackpot-secrets__cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 15px;
    }
    .page-blog-slot-jackpot-secrets__btn-primary,
    .page-blog-slot-jackpot-secrets__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    /* 通用图片与容器 */
    .page-blog-slot-jackpot-secrets img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-slot-jackpot-secrets__content-section,
    .page-blog-slot-jackpot-secrets__faq-section {
        padding: 40px 0;
    }
    .page-blog-slot-jackpot-secrets__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* 其他内容模块 */
    .page-blog-slot-jackpot-secrets__section-title {
        font-size: 1.8em !important;
        margin-bottom: 20px;
    }
    .page-blog-slot-jackpot-secrets__sub-title {
        font-size: 1.2em !important;
        margin-top: 30px;
    }
    .page-blog-slot-jackpot-secrets p {
        font-size: 1em;
    }
    .page-blog-slot-jackpot-secrets__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-blog-slot-jackpot-secrets__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 0.95em;
    }

    /* 产品展示图区域 - Not applicable for this page as gameshow is forbidden */
    /* Placeholder for compliance, but no specific styles needed if no gameshow elements */
}