*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    background: #0a0a0a;
    color: #f5f0e8;
    line-height: 1.5;
    overflow-x: hidden;
    transition: background 0.3s ease;
}
img, video {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}
nav[data-contract="categories"] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
nav[data-contract="categories"]::-webkit-scrollbar {
    display: none;
}
.runtime-category {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    font-size: 0.85rem;
    color: #b0a89a;
    border-radius: 2rem;
    border: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    white-space: nowrap;
}
.runtime-category:hover {
    color: #ff4d00;
    border-color: rgba(255, 77, 0, 0.4);
    background: rgba(255, 77, 0, 0.08);
}
.site-brand {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #f5f0e8;
    transition: color 0.2s;
    white-space: nowrap;
}
.site-brand:hover {
    color: #ff4d00;
}
main {
    padding: 0 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
}
.hero-shell {
    padding: 1.25rem 0 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.player-wrapper {
    width: 100%;
    position: relative;
    background: #000;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 77, 0, 0.15);
}
.player-wrapper video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
}
.custom-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    background: rgba(10, 10, 10, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    backdrop-filter: blur(4px);
}
.custom-controls button {
    font-size: 0.72rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.06);
    color: #d0c8b8;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.custom-controls button:hover {
    background: rgba(255, 77, 0, 0.25);
    color: #ff4d00;
}
.player-wrapper.theater-mode {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    border-radius: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}
.theater-mode video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: auto;
}
body.lights-dim {
    background: #000;
}
body.lights-dim .hero-shell, body.lights-dim .movie-overview-block, body.lights-dim .timeline-section, body.lights-dim .episodes-grid-section, body.lights-dim .comments-section, body.lights-dim .recommend-block, body.lights-dim footer {
    opacity: 0.3;
    transition: opacity 0.3s;
}
.hero-copy {
    padding: 0.75rem 0.5rem;
    max-width: 880px;
}
.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.01em;
    color: #ff4d00;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(255, 77, 0, 0.3);
    margin-bottom: 0.5rem;
}
.hero-tagline {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 600;
    color: #e8a020;
    margin-bottom: 0.5rem;
}
.hero-seo-desc {
    font-size: 0.95rem;
    color: #b0a89a;
    max-width: 720px;
    line-height: 1.6;
}
.movie-overview-block {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.poster-cluster {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.poster-wrapper {
    position: relative;
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #000;
}
.poster-wrapper img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
}
.silhouette-zone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 77, 0, 0.06), rgba(10, 10, 10, 0.4));
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 77, 0, 0.15);
}
.track-line {
    position: absolute;
    bottom: 1rem;
    left: -10%;
    right: -10%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #ff4d00 0px, #ff4d00 12px, transparent 12px, transparent 24px);
    opacity: 0.6;
    transform: rotate(-2deg);
    animation: track-pulse 2s ease-in-out infinite;
}
@keyframes track-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}
.figure-shadow {
    font-size: 2.2rem;
    line-height: 1;
    filter: grayscale(100%) contrast(1.4) brightness(0.6);
    z-index: 1;
    transition: filter 0.3s ease, transform 0.3s ease;
}
.figure-shadow:hover {
    filter: grayscale(0) contrast(1) brightness(0.9);
    transform: scale(1.05);
}
.movie-info-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.title-tagline {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.movie-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #f5f0e8;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.movie-tagline {
    font-size: 0.95rem;
    color: #e8a020;
    font-weight: 500;
    margin-top: 0.25rem;
}
.synopsis-panel {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.synopsis-panel p {
    font-size: 0.88rem;
    color: #c0b8a8;
    line-height: 1.5;
}
.cast-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 0.5rem 0;
}
.cast-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem;
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s, border-color 0.2s;
}
.cast-card:hover {
    background: rgba(255, 77, 0, 0.06);
    border-color: rgba(255, 77, 0, 0.25);
}
.cast-avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    background: #1a1a1a;
    color: #8a8a8a;
    border: 1px solid #333;
    filter: grayscale(100%);
    transition: filter 0.3s, background 0.3s, color 0.3s;
}
.cast-card:hover .cast-avatar {
    filter: grayscale(0);
    background: linear-gradient(135deg, #ff4d00, #ff8c00);
    color: #fff;
    border-color: #ff4d00;
}
.cast-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #dcd5c8;
}
.episode-status-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: #b0a89a;
}
.episode-label, .episode-total {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.episode-current, .episode-total-num {
    font-weight: 800;
    font-size: 1rem;
    color: #ff4d00;
    font-family: "SF Mono", "Cascadia Mono", Consolas, monospace;
}
.movie-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.meta-label {
    font-size: 0.7rem;
    color: #7a7266;
    letter-spacing: 0.05em;
}
.meta-value {
    font-size: 0.8rem;
    color: #dcd5c8;
    font-weight: 500;
}
.timeline-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section-heading {
    font-size: 1.25rem;
    font-weight: 800;
    color: #f5f0e8;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.section-heading::after {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #ff4d00, transparent);
    border-radius: 2px;
}
.timeline-horizontal {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 0 1rem;
    scrollbar-width: thin;
    scrollbar-color: #ff4d00 #1a1a1a;
}
.timeline-horizontal::-webkit-scrollbar {
    height: 4px;
}
.timeline-horizontal::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}
.timeline-horizontal::-webkit-scrollbar-thumb {
    background: #ff4d00;
    border-radius: 4px;
}
.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    min-width: 140px;
    max-width: 160px;
    padding: 0.75rem 0.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    scroll-snap-align: start;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.timeline-item:hover {
    background: rgba(255, 77, 0, 0.04);
    border-color: rgba(255, 77, 0, 0.2);
    transform: translateY(-2px);
}
.tl-time {
    font-size: 0.78rem;
    font-weight: 700;
    color: #e8a020;
    font-family: "SF Mono", "Cascadia Mono", Consolas, monospace;
}
.tl-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #ff4d00;
    box-shadow: 0 0 8px rgba(255, 77, 0, 0.5);
    position: relative;
    flex-shrink: 0;
}
.tl-dot::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid rgba(255, 77, 0, 0.3);
    animation: dot-pulse 2s ease-out infinite;
}
@keyframes dot-pulse {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}
.tl-text {
    font-size: 0.78rem;
    color: #b0a89a;
    text-align: center;
    line-height: 1.4;
}
.episodes-grid-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.episodes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}
.episode-card {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 0.375rem;
    transition: background 0.2s, border-color 0.2s;
}
.episode-card:hover {
    background: rgba(255, 77, 0, 0.04);
    border-color: rgba(255, 77, 0, 0.2);
}
.ep-number {
    font-size: 2rem;
    font-weight: 900;
    color: #ff4d00;
    font-family: "SF Mono", "Cascadia Mono", Consolas, monospace;
    line-height: 1;
    min-width: 2rem;
    text-align: right;
    text-shadow: 0 0 12px rgba(255, 77, 0, 0.3);
}
.ep-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.ep-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f5f0e8;
}
.ep-summary {
    font-size: 0.78rem;
    color: #8a8276;
    line-height: 1.4;
}
.ep-duration {
    font-size: 0.72rem;
    color: #6a6256;
    font-family: "SF Mono", "Cascadia Mono", Consolas, monospace;
}
.placeholder-ep {
    opacity: 0.5;
    border-style: dashed;
}
.comments-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.comment-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}
.comment-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(255, 77, 0, 0.4);
    border-radius: 0 0.375rem 0.375rem 0;
}
.quote-mark {
    font-size: 1.75rem;
    line-height: 0.6;
    color: #ff4d00;
    font-family: Georgia, serif;
    opacity: 0.7;
}
.comment-text {
    font-size: 0.85rem;
    color: #c0b8a8;
    line-height: 1.5;
}
.comment-author {
    font-size: 0.75rem;
    color: #7a7266;
    align-self: flex-end;
    font-weight: 500;
}
.recommend-block {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.data-recommendation-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f5f0e8;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.data-recommendation-title::before {
    content: "";
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    background: #ff4d00;
    transform: rotate(45deg);
    border-radius: 1px;
}
.rec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
a[data-runtime="recommendation"] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 0.375rem;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    color: #f5f0e8;
    text-decoration: none;
}
a[data-runtime="recommendation"]:hover {
    background: rgba(255, 77, 0, 0.05);
    border-color: rgba(255, 77, 0, 0.3);
    transform: translateY(-2px);
}
a[data-runtime="recommendation"] img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 0.25rem;
    background: #1a1a1a;
}
a[data-runtime="recommendation"] span[data-runtime="name"] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f5f0e8;
}
a[data-runtime="recommendation"] span[data-runtime="blurb"] {
    font-size: 0.75rem;
    color: #8a8276;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
footer {
    padding: 1.5rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    background: #0a0a0a;
}
.footer-disclaimer {
    font-size: 0.75rem;
    color: #6a6256;
    flex-basis: 100%;
    line-height: 1.5;
}
.friend-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    flex: 1 1 auto;
}
.friend-label {
    font-size: 0.78rem;
    color: #8a8276;
    font-weight: 600;
    margin-right: 0.25rem;
}
.runtime-friend-link {
    font-size: 0.75rem;
    color: #a89a8a;
    padding: 0.2rem 0.5rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    white-space: nowrap;
}
.runtime-friend-link:hover {
    color: #ff4d00;
    border-color: rgba(255, 77, 0, 0.3);
    background: rgba(255, 77, 0, 0.05);
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
    font-size: 0.78rem;
    color: #a89a8a;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
    color: #ff4d00;
}
.player-wrapper .play .custom-controls button[data-player-action="play"] {
    background: rgba(255, 77, 0, 0.3);
}
.player-wrapper .progress .custom-controls button[data-player-action="progress"] {
    background: rgba(255, 77, 0, 0.3);
}
.player-wrapper .volume .custom-controls button[data-player-action="volume"] {
    background: rgba(255, 77, 0, 0.3);
}
.player-wrapper .mute .custom-controls button[data-player-action="mute"] {
    background: rgba(255, 77, 0, 0.3);
}
.player-wrapper .speed .custom-controls button[data-player-action="speed"] {
    background: rgba(255, 77, 0, 0.3);
}
.player-wrapper .pip .custom-controls button[data-player-action="pip"] {
    background: rgba(255, 77, 0, 0.3);
}
.player-wrapper .fullscreen .custom-controls button[data-player-action="fullscreen"] {
    background: rgba(255, 77, 0, 0.3);
}
.player-wrapper .theater .custom-controls button[data-player-action="theater"] {
    background: rgba(255, 77, 0, 0.3);
}
.player-wrapper .light .custom-controls button[data-player-action="light"] {
    background: rgba(255, 77, 0, 0.3);
}
.player-wrapper.click .custom-controls {
    background: rgba(10, 10, 10, 0.95);
}
@media (max-width: 1024px) {.movie-overview-block {
        grid-template-columns: minmax(200px, 260px) 1fr;
        gap: 1rem;
    }
.movie-meta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }}
@media (max-width: 768px) {main {
        padding: 0 0.75rem;
    }
header {
        padding: 0.5rem 0.75rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
.site-brand {
        font-size: 1rem;
    }
.hero-shell {
        padding-top: 0.75rem;
        gap: 0.75rem;
    }
.hero-title {
        font-size: 1.5rem;
    }
.hero-tagline {
        font-size: 0.95rem;
    }
.hero-seo-desc {
        font-size: 0.85rem;
    }
.movie-overview-block {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
.poster-cluster {
        flex-direction: row;
        align-items: flex-start;
    }
.poster-wrapper {
        max-width: 180px;
        flex-shrink: 0;
    }
.poster-wrapper img {
        aspect-ratio: 2 / 3;
    }
.silhouette-zone {
        flex: 1;
        min-height: 180px;
    }
.cast-grid {
        grid-template-columns: repeat(2, 1fr);
    }
.timeline-horizontal {
        scroll-snap-type: x proximity;
    }
.episodes-grid {
        grid-template-columns: 1fr;
    }
.comment-list {
        grid-template-columns: 1fr;
    }
.rec-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
a[data-runtime="recommendation"] img {
        aspect-ratio: 16 / 9;
    }
footer {
        padding: 1rem 0.75rem;
        gap: 0.5rem;
    }
.friend-links {
        gap: 0.25rem;
    }
.runtime-friend-link {
        padding: 0.15rem 0.4rem;
        font-size: 0.7rem;
    }}
@media (max-width: 480px) {html {
        font-size: 14px;
    }
main {
        padding: 0 0.5rem;
    }
.hero-title {
        font-size: 1.3rem;
        font-style: italic;
        letter-spacing: -0.02em;
    }
.hero-tagline {
        font-size: 0.85rem;
    }
.hero-seo-desc {
        font-size: 0.8rem;
        line-height: 1.5;
    }
.poster-wrapper {
        max-width: 140px;
    }
.silhouette-zone {
        min-height: 140px;
    }
.cast-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.375rem;
    }
.cast-avatar {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }
.cast-name {
        font-size: 0.78rem;
    }
.movie-meta-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
    }
.episode-card {
        padding: 0.6rem;
        gap: 0.5rem;
    }
.ep-number {
        font-size: 1.5rem;
        min-width: 1.5rem;
    }
.rec-grid {
        gap: 0.4rem;
    }
.timeline-item {
        min-width: 120px;
        max-width: 140px;
    }
.custom-controls {
        position: relative;
        background: #0a0a0a;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
.custom-controls button {
        font-size: 0.65rem;
        padding: 0.2rem 0.375rem;
    }
.player-wrapper {
        border-radius: 0.375rem;
    }
.comment-card {
        padding: 0.5rem;
    }}
@media (prefers-reduced-motion: reduce) {*, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }}

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}
