*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: #0a0e1a;
    color: #c9d1e0;
    line-height: 1.6;
    font-size: 15px;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
header {
    background: #0a0e1a;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-brand {
    font-family: "Didot", "Bodoni MT", "Playfair Display", "Times New Roman", serif;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    color: #d4af37;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}
.site-brand:hover { color: #f0d78c; }
[data-contract="categories"] {
    display: flex;
    gap: 0.4rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.runtime-category {
    color: #8b9bb4;
    font-size: 0.85rem;
    padding: 0.3rem 0.7rem;
    border: 1px solid transparent;
    border-radius: 2rem;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    flex-shrink: 0;
    display: inline-block;
}
.runtime-category:hover {
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
}
main {
    padding-bottom: 3rem;
}
.movie-overview {
    background: linear-gradient(135deg, #0d1224 0%, #141a33 50%, #1a1030 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    display: grid;
    grid-template-columns: minmax(280px, 320px) 1fr;
    gap: 2.5rem;
    padding: 3.5rem 4vw 3rem;
    position: relative;
    overflow: hidden;
}
.movie-overview::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(120, 40, 80, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(40, 60, 120, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.poster-wrapper {
    position: relative;
    z-index: 1;
    align-self: start;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 40px rgba(180, 60, 100, 0.15);
}
.main-poster-img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.overview-info {
    position: relative;
    z-index: 1;
    max-width: 900px;
}
.movie-title {
    font-family: "Didot", "Bodoni MT", "Playfair Display", "Times New Roman", serif;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #f5e9c8;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5), 0 2px 4px rgba(0,0,0,0.6);
    -webkit-text-stroke: 0.5px rgba(212, 175, 55, 0.4);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}
.movie-tagline {
    font-family: "Didot", "Bodoni MT", "Playfair Display", serif;
    font-size: 1rem;
    color: #9a6a8f;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
    font-style: italic;
    border-left: 2px solid #d4af37;
    padding-left: 0.8rem;
}
.detail-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 1rem;
}
.detail-item {
    font-size: 0.8rem;
    color: #8b9bb4;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    white-space: nowrap;
}
.cast-list {
    margin-bottom: 1rem;
}
.cast-names {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 1.2rem;
}
.cast-names li {
    font-size: 0.9rem;
    color: #b8c4d8;
    padding-left: 0.6rem;
    border-left: 2px solid rgba(212, 175, 55, 0.5);
}
.section-subtitle {
    font-family: "Didot", "Bodoni MT", "Playfair Display", serif;
    font-size: 0.95rem;
    color: #d4af37;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}
.synopsis-block {
    padding: 1rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 1rem;
}
.synopsis-para {
    font-size: 0.9rem;
    color: #9fb0c8;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    max-width: 60ch;
}
.synopsis-para:last-child { margin-bottom: 0; }
.episode-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.status-label {
    font-size: 0.85rem;
    color: #f0d78c;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.player-region {
    background: #080b14;
    padding: 2rem 4vw 2.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.main-player {
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    background: #000;
}
.player-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.8rem;
}
.player-controls button {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #8b9bb4;
    font-size: 0.78rem;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    white-space: nowrap;
}
.player-controls button:hover {
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.05);
}
.theater-mode {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    z-index: 999;
    border: 2px solid #d4af37;
}
.lights-dim {
    filter: brightness(0.4) contrast(1.1);
}
.episodes-section {
    padding: 2.5rem 4vw 2rem;
    background: #0a0e1a;
}
.section-title {
    font-family: "Didot", "Bodoni MT", "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #d4af37;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.4), transparent);
}
.episode-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}
.episode-card {
    background: #0f1425;
    border: 1px solid rgba(212, 175, 55, 0.12);
    padding: 0.9rem 1rem;
    transition: border-color 0.3s, background 0.3s, transform 0.2s;
    position: relative;
    cursor: pointer;
}
.episode-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: #141a30;
    transform: translateY(-2px);
}
.episode-number {
    font-family: "Didot", "Bodoni MT", serif;
    font-size: 1.8rem;
    color: rgba(212, 175, 55, 0.25);
    display: block;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.episode-title {
    font-family: "Didot", "Bodoni MT", serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #e8dcc8;
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
}
.episode-summary {
    font-size: 0.8rem;
    color: #71809a;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
.episode-duration {
    font-size: 0.7rem;
    color: #4a5a75;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.4rem;
}
.cast-scroll-section {
    padding: 2rem 4vw;
    background: linear-gradient(180deg, #0a0e1a 0%, #0d1224 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.cast-scroll-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.cast-card {
    background: #0f1425;
    border: 1px solid rgba(212, 175, 55, 0.12);
    padding: 2rem 1rem;
    text-align: center;
    font-family: "Didot", "Bodoni MT", serif;
    font-size: 1.2rem;
    color: #c9d1e0;
    letter-spacing: 0.08em;
    transition: border-color 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}
.cast-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    color: #d4af37;
}
.timeline-section {
    padding: 2.5rem 4vw 2rem;
    background: #0a0e1a;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.timeline-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem 2rem;
    border-left: 1px solid rgba(212, 175, 55, 0.25);
    padding-left: 1.5rem;
    position: relative;
}
.timeline-list::before {
    content: "";
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #d4af37, rgba(212, 175, 55, 0.1));
    border-radius: 3px;
}
.timeline-item {
    display: flex;
    gap: 0.8rem;
    align-items: baseline;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.timecode {
    font-family: "Didot", "Bodoni MT", serif;
    font-size: 0.85rem;
    color: #d4af37;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}
.timeline-label {
    font-size: 0.85rem;
    color: #9fb0c8;
    line-height: 1.5;
}
.comments-grid-section {
    padding: 2.5rem 4vw 2rem;
    background: #0d1224;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.comments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}
.comment-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.08);
    padding: 0.8rem 1rem;
    transition: border-color 0.2s;
}
.comment-card:hover { border-color: rgba(212, 175, 55, 0.3); }
.commenter {
    display: block;
    font-family: "Didot", "Bodoni MT", serif;
    font-size: 0.9rem;
    color: #d4af37;
    margin-bottom: 0.3rem;
    letter-spacing: 0.03em;
}
.comment-text {
    font-size: 0.82rem;
    color: #8b9bb4;
    line-height: 1.5;
}
.recommendation-region {
    padding: 2.5rem 4vw 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    background: #0a0e1a;
}
.recommendation-region:nth-of-type(even) {
    background: #0d1224;
}
.rec-title {
    font-family: "Didot", "Bodoni MT", serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #d4af37;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.rec-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.4), transparent);
}
.rec-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.rec-cards a[data-runtime="recommendation"] {
    display: flex;
    flex-direction: column;
    background: #0f1425;
    border: 1px solid rgba(212, 175, 55, 0.12);
    overflow: hidden;
    transition: border-color 0.3s, transform 0.2s;
    min-width: 0;
}
.rec-cards a[data-runtime="recommendation"]:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}
.rec-cards a[data-runtime="recommendation"] img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.rec-cards a[data-runtime="recommendation"] span {
    padding: 0.4rem 0.8rem 0;
    font-size: 0.8rem;
    color: #b8c4d8;
}
.rec-cards a[data-runtime="recommendation"] span[data-runtime="name"] {
    font-family: "Didot", "Bodoni MT", serif;
    font-size: 1rem;
    color: #e8dcc8;
    letter-spacing: 0.03em;
}
.rec-cards a[data-runtime="recommendation"] span[data-runtime="blurb"] {
    color: #71809a;
    font-size: 0.75rem;
    line-height: 1.4;
    padding-bottom: 0.8rem;
    flex: 0 0 auto;
}
footer {
    background: #080b14;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2rem 4vw 2.5rem;
}
.footer-disclaimer {
    font-size: 0.75rem;
    color: #4a5a75;
    line-height: 1.6;
    max-width: 80ch;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.footer-home, .footer-sitemap {
    display: inline-block;
    font-size: 0.85rem;
    color: #8b9bb4;
    margin-right: 1.5rem;
    margin-bottom: 0.8rem;
    transition: color 0.2s;
}
.footer-home:hover, .footer-sitemap:hover { color: #d4af37; }
.footer-friend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 0.8rem;
    align-items: center;
    margin-top: 0.5rem;
}
.friend-label {
    font-size: 0.8rem;
    color: #4a5a75;
    white-space: nowrap;
}
.runtime-friend-link {
    font-size: 0.78rem;
    color: #71809a;
    white-space: nowrap;
    transition: color 0.2s;
}
.runtime-friend-link:hover { color: #d4af37; }
@media (max-width: 1100px) {.movie-overview {
        grid-template-columns: minmax(240px, 280px) 1fr;
        gap: 2rem;
    }
.episode-grid {
        grid-template-columns: repeat(3, 1fr);
    }
.rec-cards {
        grid-template-columns: repeat(3, 1fr);
    }
.cast-scroll-container {
        grid-template-columns: repeat(2, 1fr);
    }}
@media (max-width: 900px) {.movie-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-top: 2rem;
    }
.poster-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }
.overview-info { max-width: 100%; }
.episode-grid {
        grid-template-columns: repeat(2, 1fr);
    }
.comments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
.timeline-list {
        grid-template-columns: 1fr;
    }
header {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
    }
[data-contract="categories"] {
        width: 100%;
        justify-content: flex-start;
    }}
@media (max-width: 640px) {body { font-size: 14px; }
.movie-title { font-size: 1.6rem; }
.movie-overview {
        padding: 1.5rem 1rem 2rem;
        gap: 1.2rem;
    }
.poster-wrapper {
        width: 70%;
        max-width: 280px;
    }
.player-region {
        padding: 1.5rem 1rem 2rem;
    }
.player-controls {
        gap: 0.3rem;
    }
.player-controls button {
        flex: 1 1 auto;
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }
.episodes-section, .cast-scroll-section, .timeline-section, .comments-grid-section, .recommendation-region {
        padding: 1.5rem 1rem;
    }
.episode-grid {
        grid-template-columns: 1fr;
    }
.cast-scroll-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
.cast-card {
        min-height: 90px;
        padding: 1.2rem 0.5rem;
        font-size: 1rem;
    }
.comments-grid {
        grid-template-columns: 1fr;
    }
.rec-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
.rec-cards a[data-runtime="recommendation"] img {
        aspect-ratio: 16 / 11;
    }
.rec-cards a[data-runtime="recommendation"] span[data-runtime="blurb"] {
        display: none;
    }
.rec-cards a[data-runtime="recommendation"] span {
        padding: 0.3rem 0.5rem 0.5rem;
        font-size: 0.78rem;
    }
.rec-cards a[data-runtime="recommendation"] span[data-runtime="name"] {
        font-size: 0.9rem;
    }
.timeline-list {
        padding-left: 1rem;
    }
.timecode { font-size: 0.75rem; }
.section-title {
        font-size: 1.3rem;
    }
footer {
        padding: 1.5rem 1rem 2rem;
    }
.footer-home, .footer-sitemap {
        margin-right: 1rem;
    }}
@media (max-width: 400px) {.rec-cards {
        grid-template-columns: 1fr;
    }
.rec-cards a[data-runtime="recommendation"] span[data-runtime="blurb"] {
        display: block;
    }
.rec-cards a[data-runtime="recommendation"] img {
        aspect-ratio: 16 / 9;
    }}
@media print {body { background: #fff; color: #000; }
.main-player, .player-controls, header, footer { display: none; }
.movie-overview, .episodes-section, .cast-scroll-section, .timeline-section, .comments-grid-section, .recommendation-region {
        background: #fff;
        color: #000;
        border: none;
        padding: 1rem 0;
    }
.movie-title, .section-title, .rec-title, .episode-title, .timecode, .commenter {
        color: #000;
        -webkit-text-stroke: none;
        text-shadow: none;
    }
.detail-item, .synopsis-para, .episode-summary, .comment-text, .timeline-label, .status-label {
        color: #333;
    }
.episode-card, .cast-card, .comment-card, .rec-cards a[data-runtime="recommendation"] {
        border: 1px solid #ccc;
        background: #fff;
        break-inside: avoid;
    }
.main-poster-img {
        border: 1px solid #ccc;
    }}

footer{text-align:center!important}
footer *{justify-content:center!important}
footer :is(div,nav,ul,ol,p,section,address){margin-left:auto!important;margin-right:auto!important}
