/* style/blog-ww-live-slot-secrets.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f8f9fa;
    --button-login: #EA7C07;
    --black-color: #000000; /* Assuming this comes from shared.css and is dark */
}

.page-blog-ww-live-slot-secrets {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--black-color); /* Inherit from body, which is var(--black-color) */
}

.page-blog-ww-live-slot-secrets__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--black-color);
}

.page-blog-ww-live-slot-secrets__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for aesthetic */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

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

.page-blog-ww-live-slot-secrets__hero-content {
    max-width: 900px;
    padding: 40px 20px;
    margin: 0 auto;
    background-color: var(--black-color); /* Match body background */
    color: var(--text-light);
    z-index: 2;
    position: relative; /* Ensure it's above other elements if any */
}

.page-blog-ww-live-slot-secrets__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-ww-live-slot-secrets__description {
    font-size: 1.15em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.page-blog-ww-live-slot-secrets__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-ww-live-slot-secrets__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-blog-ww-live-slot-secrets__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: translateY(-2px);
}

.page-blog-ww-live-slot-secrets__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--secondary-color); /* Light background for main content */
    color: var(--text-dark); /* Dark text on light background */
    line-height: 1.7;
}

.page-blog-ww-live-slot-secrets__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
}

.page-blog-ww-live-slot-secrets__sub-title {
    font-size: 1.6em;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-ww-live-slot-secrets__text-block p {
    margin-bottom: 1em;
    font-size: 1.05em;
}

.page-blog-ww-live-slot-secrets__text-block strong.page-blog-ww-live-slot-secrets__highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.page-blog-ww-live-slot-secrets__image-card {
    margin: 40px auto;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--secondary-color);
}

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

.page-blog-ww-live-slot-secrets__image-caption {
    padding: 15px 20px;
    font-size: 0.95em;
    color: var(--text-dark);
    text-align: center;
    background-color: var(--background-light);
}

.page-blog-ww-live-slot-secrets__faq-list {
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.page-blog-ww-live-slot-secrets__faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    color: var(--text-dark);
}

.page-blog-ww-live-slot-secrets__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--text-dark);
}

.page-blog-ww-live-slot-secrets__faq-item summary::-webkit-details-marker,
.page-blog-ww-live-slot-secrets__faq-item summary::marker {
    display: none;
}

.page-blog-ww-live-slot-secrets__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-right: 10px;
}

.page-blog-ww-live-slot-secrets__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    margin-left: 10px;
}

.page-blog-ww-live-slot-secrets__faq-answer {
    padding-top: 10px;
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-blog-ww-live-slot-secrets__faq-item[open] .page-blog-ww-live-slot-secrets__faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    transition: max-height 0.5s ease-in;
}

.page-blog-ww-live-slot-secrets__faq-item.active .page-blog-ww-live-slot-secrets__faq-answer {
    max-height: 500px !important; /* For JS-controlled div fallback */
}

.page-blog-ww-live-slot-secrets__conclusion {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid #e0e0e0;
    margin-top: 60px;
}

.page-blog-ww-live-slot-secrets__conclusion .page-blog-ww-live-slot-secrets__cta-button {
    margin-top: 30px;
}

/* General image and container responsiveness */
.page-blog-ww-live-slot-secrets img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-blog-ww-live-slot-secrets__section,
.page-blog-ww-live-slot-secrets__card,
.page-blog-ww-live-slot-secrets__container,
.page-blog-ww-live-slot-secrets__cta-buttons,
.page-blog-ww-live-slot-secrets__button-group,
.page-blog-ww-live-slot-secrets__btn-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    .page-blog-ww-live-slot-secrets {
        font-size: 16px;
        line-height: 1.6;
    }

    /* HERO 主图区域 */
    .page-blog-ww-live-slot-secrets__hero-section {
        padding-top: 10px !important;
    }

    .page-blog-ww-live-slot-secrets__hero-content {
        padding: 30px 15px;
    }

    .page-blog-ww-live-slot-secrets__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-blog-ww-live-slot-secrets__description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    /* 通用图片与容器 */
    .page-blog-ww-live-slot-secrets img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-ww-live-slot-secrets__section,
    .page-blog-ww-live-slot-secrets__card,
    .page-blog-ww-live-slot-secrets__container,
    .page-blog-ww-live-slot-secrets__text-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-ww-live-slot-secrets__content-area {
        padding: 40px 15px;
    }

    .page-blog-ww-live-slot-secrets__section-title {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-blog-ww-live-slot-secrets__sub-title {
        font-size: 1.3em;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    /* 按钮与按钮容器 */
    .page-blog-ww-live-slot-secrets__cta-button,
    .page-blog-ww-live-slot-secrets__btn-primary,
    .page-blog-ww-live-slot-secrets__btn-secondary,
    .page-blog-ww-live-slot-secrets a[class*="button"],
    .page-blog-ww-live-slot-secrets 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;
        padding-right: 15px;
        font-size: 1em;
    }
    
    .page-blog-ww-live-slot-secrets__cta-buttons,
    .page-blog-ww-live-slot-secrets__button-group,
    .page-blog-ww-live-slot-secrets__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        display: flex;
        flex-direction: column; /* Ensure vertical stacking for multiple buttons */
    }

    /* Other content modules (FAQ) */
    .page-blog-ww-live-slot-secrets__faq-item summary {
        font-size: 1em;
    }

    .page-blog-ww-live-slot-secrets__faq-toggle {
        font-size: 1.2em;
    }

    .page-blog-ww-live-slot-secrets__faq-answer {
        font-size: 0.95em;
    }

    .page-blog-ww-live-slot-secrets__conclusion {
        padding-top: 30px;
    }
}