/* Coming Soon Content Styles */
.coming-soon-content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.coming-soon-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    padding: 2rem;
}

/* Headings */
.coming-soon-content h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--primary-color);
    font-family: 'Impact', sans-serif;
}

.coming-soon-content h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

/* Content Blocks */
.coming-soon-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Content Sections */
.chapter-predictions,
.story-context,
.plot-analysis,
.series-update {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.chapter-predictions:hover,
.story-context:hover,
.plot-analysis:hover,
.series-update:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* CTA Buttons */
.cta-button {
    margin: 2rem 0;
    text-align: center;
}

.primary-btn,
.secondary-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: var(--primary-color);
    color: #000;
    border: 2px solid var(--primary-color);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,215,0,0.2);
}


/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-content {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .coming-soon-container {
        padding: 1.5rem;
    }

    .coming-soon-content h2 {
        font-size: 1.8rem;
    }

    .coming-soon-content h3 {
        font-size: 1.4rem;
    }

    .coming-soon-content p {
        font-size: 1rem;
    }


}

/* Media Showcase Styles */
.media-showcase {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.preview-image,
.preview-video {
    width: 100%;
    position: relative;
}

.chapter-preview {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.chapter-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 比例 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.image-caption,
.video-caption {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .media-showcase {
        gap: 2rem;
    }
}

/* Coming Soon Banner Styles */
.coming-soon-banner {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 3rem 0;
    text-align: center;
    margin: 2rem 0;
}

.banner-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.banner-text {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0 #000;
}

.coming-text {
    color: #fff;
    display: block;
}

.soon-text {
    color: #000;
    display: block;
    font-size: 5rem;
}

.banner-subtitle {
    color: #000;
    font-size: 1.2rem;
    margin: 1.5rem 0;
    font-weight: 500;
}

.banner-container .coffee-btn {
    margin-top: 1.5rem;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.banner-container .coffee-btn:hover {
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-banner {
        padding: 2rem 0;
    }

    .banner-text {
        font-size: 3rem;
    }

    .soon-text {
        font-size: 3.5rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }
}