*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 14px;
    scroll-behavior: smooth;
}
body {
    font-family: "Helvetica Neue", "Arial", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: #0a0d14;
    color: #c9d4e3;
    line-height: 1.55;
    letter-spacing: 0.02em;
    min-height: 100vh;
    overflow-x: hidden;
}
body.lights-off {
    background: #000;
    color: #9aa7b8;
}
a {
    color: #b8c6d9;
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: #f5e9d8;
}
img {
    display: block;
    max-width: 100%;
}
ul, ol {
    list-style: none;
}
button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    background: rgba(6, 9, 16, 0.95);
    border-bottom: 1px solid #1b2836;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}
.site-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #e8eef7;
    text-transform: uppercase;
    white-space: nowrap;
    border-left: 4px solid #c8204b;
    padding-left: 0.75rem;
    line-height: 1.2;
}
.site-logo:hover {
    color: #ffffff;
}
nav[data-contract="categories"] {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.runtime-category {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #b8c6d9;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 3px;
    white-space: nowrap;
    transition: all 0.2s ease;
    letter-spacing: 0.05em;
}
.runtime-category:hover {
    color: #fff;
    border-color: #2a3a4e;
    background: #131b28;
}
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 1.25rem 2rem;
}
.movie-overview-shell {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    margin-bottom: 2.5rem;
    background: linear-gradient(145deg, #0e1520 0%, #0b1018 100%);
    border: 1px solid #1b2836;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}
.movie-overview-shell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c8204b 0%, #3a5a78 40%, #c8204b 100%);
    opacity: 0.6;
}
.poster-column {
    padding: 0;
    background: #0a0e16;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.poster-wrapper {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    position: relative;
}
.poster-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 30%);
    pointer-events: none;
}
.main-poster {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.85) saturate(0.85);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
}
.overview-content {
    padding: 1.75rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    min-width: 0;
}
.movie-title {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: #f0f4fa;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid #c8204b;
    padding-bottom: 0.35rem;
    display: inline-block;
    width: fit-content;
}
.movie-tagline {
    font-size: 1.05rem;
    font-weight: 300;
    font-style: italic;
    color: #8b9db4;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    border-left: 3px solid #3a5a78;
    padding-left: 0.75rem;
    line-height: 1.5;
}
.episode-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.status-label {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    background: rgba(200, 32, 75, 0.15);
    border: 1px solid rgba(200, 32, 75, 0.4);
    color: #e77a97;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.04em;
}
.total-episodes, .current-episode {
    font-weight: 800;
    color: #f5b0c3;
}
.synopsis-block, .cast-block, .details-panel {
    border-top: 1px solid #1b2836;
    padding-top: 1rem;
}
.section-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b809e;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(27, 40, 54, 0.8);
}
.synopsis-paragraph {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #b3c1d4;
    margin-bottom: 0.55rem;
    text-align: justify;
}
.synopsis-paragraph:last-child {
    margin-bottom: 0;
}
.actor-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.actor-chip {
    font-size: 0.82rem;
    font-weight: 600;
    color: #c8d6e8;
    background: #131e2c;
    border: 1px solid #24374a;
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    transition: all 0.2s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.actor-chip:hover {
    background: #1c2c3f;
    border-color: #3a5a78;
    color: #fff;
}
.details-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.4rem 1rem;
    font-size: 0.85rem;
}
.details-list li {
    color: #93a5ba;
    line-height: 1.5;
}
.detail-label {
    color: #566b84;
    font-size: 0.75rem;
    font-weight: 600;
    display: block;
    letter-spacing: 0.04em;
    margin-bottom: 0.1rem;
}
.rating-value {
    font-weight: 800;
    color: #f5b0c3;
    font-size: 1.1rem;
}
.player-wide-container {
    grid-column: 2;
    padding: 0 1.5rem 1.5rem;
    min-width: 0;
}
.player-wide-container video {
    background: #000;
    border-radius: 4px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.8);
    border: 1px solid #1b2836;
}
.player-wide-container.theater-mode {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    width: 100vw;
    height: 100vh;
}
.player-wide-container.theater-mode video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
    border-radius: 0;
}
.player-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.5rem;
}
.control-btn {
    font-size: 0.72rem;
    font-weight: 600;
    color: #8b9db4;
    background: #121c2a;
    border: 1px solid #24374a;
    border-radius: 3px;
    padding: 0.3rem 0.6rem;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}
.control-btn:hover {
    background: #1c2c3f;
    color: #fff;
    border-color: #3a5a78;
}
.video.playing-state ~ .player-controls .control-btn:first-child, .playing-state + .player-controls .control-btn:first-child, .player-controls .control-btn.playing-state {
    background: #c8204b;
    color: #fff;
    border-color: #c8204b;
}
.episodes-list {
    margin-bottom: 2.5rem;
    padding: 0 0.25rem;
}
.episode-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.5rem;
}
.episode-item {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: baseline;
    gap: 0.5rem 0.6rem;
    background: #0e1520;
    border: 1px solid #1b2836;
    border-radius: 4px;
    padding: 0.6rem 0.8rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    align-content: start;
}
.episode-item:hover {
    border-color: #2a3a4e;
    background: #111a27;
}
.episode-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: #c8204b;
    font-variant-numeric: tabular-nums;
    min-width: 1.6rem;
}
.episode-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #dbe4f0;
    white-space: nowrap;
}
.episode-summary {
    grid-column: 2 / -1;
    font-size: 0.78rem;
    color: #7c90a8;
    line-height: 1.4;
    margin-top: -0.2rem;
}
.episode-duration {
    font-size: 0.72rem;
    color: #5a6f88;
    font-variant-numeric: tabular-nums;
    justify-self: end;
    white-space: nowrap;
}
.timeline-horizontal {
    margin-bottom: 2.5rem;
    padding: 0 0.25rem;
}
.timeline-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0 1rem;
    scrollbar-width: thin;
    scrollbar-color: #2a3a4e #0a0d14;
}
.timeline-scroll::-webkit-scrollbar {
    height: 6px;
}
.timeline-scroll::-webkit-scrollbar-track {
    background: #0a0d14;
}
.timeline-scroll::-webkit-scrollbar-thumb {
    background: #2a3a4e;
    border-radius: 3px;
}
.timeline-item {
    flex: 0 0 auto;
    width: 160px;
    background: #0e1520;
    border: 1px solid #1b2836;
    border-radius: 4px;
    padding: 0.75rem 0.6rem;
    position: relative;
    transition: border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.timeline-item::before {
    content: "";
    position: absolute;
    top: -0.5rem;
    left: 0.75rem;
    width: 16px;
    height: 16px;
    background: #0a0d14;
    border: 2px solid #c8204b;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #0a0d14, 0 0 8px rgba(200, 32, 75, 0.4);
}
.timeline-item:hover {
    border-color: #3a5a78;
}
.timecode {
    font-size: 0.8rem;
    font-weight: 800;
    color: #e77a97;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.03em;
}
.timeline-label {
    font-size: 0.78rem;
    color: #9aadc4;
    line-height: 1.4;
}
.comments-wall {
    margin-bottom: 2.5rem;
    padding: 0 0.25rem;
    columns: 4;
    column-gap: 0.75rem;
}
.comment-card {
    break-inside: avoid;
    margin-bottom: 0.75rem;
    background: #0e1520;
    border: 1px solid #1b2836;
    border-left: 3px solid #c8204b;
    border-radius: 4px;
    padding: 0.7rem 0.8rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.comment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.comment-nickname {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #c8d6e8;
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}
.comment-text {
    font-size: 0.82rem;
    color: #93a5ba;
    line-height: 1.5;
    font-style: italic;
}
.recommendation-region {
    margin-bottom: 2.5rem;
    padding: 0 0.25rem;
}
.recommendation-title {
    font-size: 1rem;
    font-weight: 800;
    color: #dbe4f0;
    margin-bottom: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid #1b2836;
    padding-bottom: 0.4rem;
}
.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}
.recommendation-grid a[data-runtime="recommendation"] {
    display: flex;
    flex-direction: column;
    background: #0e1520;
    border: 1px solid #1b2836;
    border-radius: 5px;
    padding: 0.5rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    height: auto;
    min-width: 0;
}
.recommendation-grid a[data-runtime="recommendation"]:hover {
    border-color: #c8204b;
    background: #111a27;
}
.recommendation-grid img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 0.4rem;
    background: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.recommendation-grid span[data-runtime="name"] {
    font-size: 0.85rem;
    font-weight: 700;
    color: #c8d6e8;
    line-height: 1.4;
    margin-top: 0.1rem;
}
.recommendation-grid span[data-runtime="blurb"] {
    font-size: 0.74rem;
    color: #6d829c;
    line-height: 1.35;
    margin-top: 0.2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
footer {
    background: #070a10;
    border-top: 1px solid #1b2836;
    padding: 1.5rem 1.25rem 2rem;
    margin-top: 1rem;
}
.disclaimer {
    font-size: 0.75rem;
    color: #5a6f88;
    line-height: 1.6;
    max-width: 1100px;
    margin: 0 auto 1.5rem;
    text-align: center;
    letter-spacing: 0.02em;
}
.friend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 1rem;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 1.5rem;
}
.friend-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #6b809e;
    margin-right: 0.5rem;
    white-space: nowrap;
}
.runtime-friend-link {
    font-size: 0.78rem;
    color: #8b9db4;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.runtime-friend-link:hover {
    color: #c8204b;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(27, 40, 54, 0.5);
}
.footer-home, .footer-sitemap {
    font-size: 0.82rem;
    font-weight: 600;
    color: #93a5ba;
    transition: color 0.2s ease;
    letter-spacing: 0.04em;
}
.footer-home:hover, .footer-sitemap:hover {
    color: #c8204b;
}
video.playing-state {
    box-shadow: 0 0 0 2px rgba(200, 32, 75, 0.6), 0 6px 24px rgba(0, 0, 0, 0.8);
}
video.progress-active {
    filter: brightness(1.1);
}
video.volume-active {
    filter: brightness(1.05);
}
video.muted-state {
    filter: brightness(0.6) saturate(0.7);
}
video.speed-active {
    filter: hue-rotate(20deg);
}
video.pip-active {
    border-color: #c8204b;
}
video.fullscreen-active {
    border: none;
}
@media (max-width: 1024px) {.movie-overview-shell {
        grid-template-columns: 1fr;
    }
.poster-column {
        display: none;
    }
.overview-content {
        padding: 1.5rem 1.25rem;
    }
.player-wide-container {
        grid-column: 1;
        padding: 0 1.25rem 1.25rem;
    }
.comments-wall {
        columns: 3;
    }}
@media (max-width: 768px) {html {
        font-size: 13px;
    }
header {
        padding: 0.5rem 0.9rem;
        flex-wrap: wrap;
        gap: 0.4rem;
    }
.site-logo {
        font-size: 1.2rem;
    }
.episode-group {
        grid-template-columns: 1fr;
    }
.episode-item {
        grid-template-columns: auto 1fr auto;
    }
.episode-summary {
        grid-column: 2 / -1;
    }
.comments-wall {
        columns: 2;
    }
.recommendation-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
.details-list {
        grid-template-columns: repeat(2, 1fr);
    }}
@media (max-width: 480px) {body {
        font-size: 0.92rem;
    }
.movie-title {
        font-size: 1.3rem;
    }
.movie-tagline {
        font-size: 0.9rem;
    }
.overview-content {
        padding: 1.25rem 1rem;
    }
.player-wide-container {
        padding: 0 1rem 1rem;
    }
.player-controls {
        gap: 0.25rem;
    }
.control-btn {
        padding: 0.25rem 0.4rem;
        font-size: 0.65rem;
    }
.comments-wall {
        columns: 1;
    }
.recommendation-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
.recommendation-grid a[data-runtime="recommendation"] {
        padding: 0.35rem;
    }
.recommendation-grid img {
        aspect-ratio: 4 / 3;
    }
.episode-item {
        grid-template-columns: auto 1fr;
        row-gap: 0.3rem;
    }
.episode-duration {
        grid-column: 2;
        justify-self: start;
    }
.episode-summary {
        grid-column: 2;
    }
.timeline-item {
        width: 140px;
    }
.footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
.friend-links {
        gap: 0.3rem 0.8rem;
    }
.details-list {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
    }}

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}
