*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
}
body {
    font-family: "PingFang SC", "Microsoft YaHei", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
    background: linear-gradient(180deg, #0a0f1e 0%, #0d1424 40%, #101a2e 100%);
    color: #d8e0ee;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img, video {
    display: block;
    max-width: 100%;
}
ul {
    list-style: none;
}
button {
    font-family: inherit;
    font-size: 0.75rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.06);
    color: #aab8d0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
button:hover {
    background: rgba(255, 106, 0, 0.2);
    color: #ff8c1a;
    border-color: rgba(255, 106, 0, 0.5);
}
button.active {
    background: #ff6a00;
    color: #0a0f1e;
    border-color: #ff6a00;
}
button:active {
    transform: scale(0.96);
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.9rem 1.2rem;
    background: rgba(8, 12, 22, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(6px);
}
.site-brand {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ff6a00;
    white-space: nowrap;
    border-left: 3px solid #ff6a00;
    padding-left: 0.6rem;
    text-shadow: 0 0 12px rgba(255, 106, 0, 0.5);
}
.site-brand:hover {
    color: #ffa64d;
}
nav[data-contract="categories"] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    justify-content: flex-end;
}
.runtime-category {
    color: #aab8d0;
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
    border: 1px solid transparent;
}
.runtime-category:hover {
    color: #ff6a00;
    background: rgba(255, 106, 0, 0.08);
    border-color: rgba(255, 106, 0, 0.25);
}
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 1rem 2rem;
}
.hero-tagline {
    padding: 2.2rem 0 1rem;
    border-bottom: 1px solid rgba(255, 106, 0, 0.18);
    margin-bottom: 1.2rem;
    position: relative;
}
.hero-tagline::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6a00, transparent);
    opacity: 0.5;
}
.tagline-main {
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #e8eef8;
    transform: skewX(-3deg);
    text-shadow: 0 0 20px rgba(255, 106, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.6rem;
    background: linear-gradient(90deg, #f0f4ff, #ff6a00, #f0f4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.seo-meta {
    font-size: 0.9rem;
    color: #8fa0bd;
    max-width: 720px;
    line-height: 1.7;
}
.movie-overview-shell {
    background: linear-gradient(145deg, rgba(16, 24, 42, 0.85), rgba(10, 16, 30, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.poster-player-wrap {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.2rem;
    align-items: start;
    margin-bottom: 1.2rem;
}
.poster-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: #0d1424;
    aspect-ratio: 2 / 3;
}
.poster-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.poster-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 60%, rgba(255, 106, 0, 0.15));
    pointer-events: none;
}
.player-shell {
    width: 100%;
    min-width: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #0a0f1e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.player-shell video {
    width: 100%;
    display: block;
    background: #000;
}
.player-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 0.45rem;
    background: rgba(8, 12, 22, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.player-controls button {
    flex: 0 0 auto;
}
.theater-mode .player-shell {
    border-radius: 0;
    border: none;
}
.lights-off {
    background: #05080f;
}
.lights-off .movie-overview-shell {
    border-color: rgba(255, 106, 0, 0.2);
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.05);
}
.movie-title-block {
    padding: 0.2rem 0 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 1rem;
}
.movie-title {
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    transform: skewX(-3deg);
    color: #f0f4ff;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 18px rgba(255, 106, 0, 0.25);
}
.movie-tagline {
    font-size: 0.95rem;
    color: #8fa0bd;
    font-style: italic;
}
.cast-section {
    margin-bottom: 1.4rem;
}
.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff6a00;
    margin-bottom: 0.7rem;
    padding-left: 0.7rem;
    border-left: 3px solid #ff6a00;
    transform: skewX(-3deg);
    letter-spacing: 0.04em;
}
.cast-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.8rem;
}
.cast-card {
    flex: 1 1 180px;
    max-width: 220px;
    text-align: center;
    padding: 0.6rem 0.4rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    position: relative;
    transition: transform 0.2s;
}
.cast-card:hover {
    transform: translateY(-3px);
}
.cast-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6a00, transparent);
    opacity: 0;
    transition: opacity 0.2s;
}
.cast-card:hover::before {
    opacity: 0.6;
}
.cast-portrait {
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #1a2440 0%, #0d1424 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.cast-portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0 20px,
        rgba(255, 255, 255, 0.03) 20px 22px
    );
}
.portrait-placeholder {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 106, 0, 0.7);
    text-shadow: 0 0 12px rgba(255, 106, 0, 0.3);
}
.cast-name {
    font-size: 0.9rem;
    color: #c0cce0;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.synopsis-section {
    margin-bottom: 1.4rem;
    padding: 0.8rem 0;
}
.synopsis-line {
    font-size: 0.92rem;
    color: #b0bed6;
    margin-bottom: 0.6rem;
    line-height: 1.8;
    padding-left: 0.8rem;
    border-left: 1px solid rgba(255, 106, 0, 0.25);
}
.episode-status {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    color: #8fa0bd;
}
.total-episodes {
    background: rgba(255, 106, 0, 0.12);
    color: #ff8c1a;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 106, 0, 0.25);
}
.current-episode {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.details-section {
    margin-bottom: 0.5rem;
}
.details-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.4rem 1rem;
    padding: 0.4rem 0;
}
.details-list li {
    font-size: 0.85rem;
    color: #aab8d0;
    display: flex;
    gap: 0.4rem;
}
.detail-label {
    color: #ff6a00;
    font-weight: 600;
    min-width: 4em;
    font-size: 0.8rem;
}
.timeline-section {
    margin-bottom: 2rem;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.timeline-track {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    padding: 1rem 0 0.8rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ff6a00 rgba(255, 255, 255, 0.1);
}
.timeline-track::-webkit-scrollbar {
    height: 4px;
}
.timeline-track::-webkit-scrollbar-thumb {
    background: #ff6a00;
    border-radius: 2px;
}
.timeline-item {
    flex: 0 0 auto;
    min-width: 120px;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    transition: background 0.2s, border-color 0.2s;
}
.timeline-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -0.4rem;
    width: 0.5rem;
    height: 2px;
    background: #ff6a00;
    opacity: 0.5;
}
.timeline-item:first-child::before {
    display: none;
}
.timeline-item:hover {
    background: rgba(255, 106, 0, 0.08);
    border-color: rgba(255, 106, 0, 0.3);
}
.timecode {
    font-family: "Courier New", "JetBrains Mono", monospace;
    font-size: 0.8rem;
    color: #ff6a00;
    font-weight: 600;
}
.label {
    font-size: 0.9rem;
    color: #c0cce0;
}
.episodes-section {
    margin-bottom: 2rem;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.episode-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 0.8rem;
}
.episode-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.7rem;
    display: flex;
    gap: 0.7rem;
    position: relative;
    transition: border-color 0.2s, background 0.2s;
}
.episode-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-left: 12px solid transparent;
    border-bottom: 12px solid rgba(255, 106, 0, 0.3);
    border-radius: 0 6px 0 0;
}
.episode-card:hover {
    border-color: rgba(255, 106, 0, 0.25);
    background: rgba(255, 106, 0, 0.04);
}
.episode-number {
    font-family: "Courier New", monospace;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff6a00;
    line-height: 1;
    opacity: 0.8;
    min-width: 1.5em;
}
.episode-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.episode-title {
    font-size: 1rem;
    font-weight: 700;
    color: #e0e8f4;
}
.episode-summary {
    font-size: 0.82rem;
    color: #8fa0bd;
    line-height: 1.6;
}
.episode-duration {
    font-family: "Courier New", monospace;
    font-size: 0.75rem;
    color: rgba(255, 106, 0, 0.7);
}
.comments-section {
    margin-bottom: 2rem;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.comments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.8rem;
}
.comment-bubble {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.8rem;
    position: relative;
    transition: border-color 0.2s;
}
.comment-bubble::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 18px;
    width: 12px;
    height: 12px;
    background: inherit;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}
.comment-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ff6a00;
    display: block;
    margin-bottom: 0.4rem;
}
.comment-text {
    font-size: 0.85rem;
    color: #c0cce0;
    line-height: 1.6;
}
.recommendation-region {
    margin-bottom: 2rem;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.recommendation-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff6a00;
    margin-bottom: 0.8rem;
    padding-left: 0.7rem;
    border-left: 3px solid #ff6a00;
    transform: skewX(-3deg);
}
.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.8rem;
}
a[data-runtime="recommendation"] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #c0cce0;
    text-decoration: none;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    position: relative;
}
a[data-runtime="recommendation"]:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 106, 0, 0.4);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
a[data-runtime="recommendation"] img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 4px;
    background: #0d1424;
}
a[data-runtime="recommendation"] span[data-runtime="name"] {
    font-size: 0.88rem;
    font-weight: 600;
    color: #e0e8f4;
    line-height: 1.3;
}
a[data-runtime="recommendation"] span[data-runtime="blurb"] {
    font-size: 0.75rem;
    color: #8fa0bd;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.disclaimer {
    font-size: 0.78rem;
    color: #6a7c96;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
}
.footer-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
    color: #8fa0bd;
    text-decoration: none;
    transition: color 0.2s;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
    color: #ff6a00;
}
.friend-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem 0.6rem;
    font-size: 0.8rem;
}
.friend-links-label {
    color: #6a7c96;
    white-space: nowrap;
}
a.runtime-friend-link {
    color: #8fa0bd;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}
a.runtime-friend-link:hover {
    color: #ff6a00;
}
@media (max-width: 900px) {.poster-player-wrap {
        grid-template-columns: 160px minmax(0, 1fr);
    }
.movie-title {
        font-size: 1.7rem;
    }
.tagline-main {
        font-size: 1.5rem;
    }}
@media (max-width: 640px) {header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.6rem 0.8rem;
    }
nav[data-contract="categories"] {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.2rem;
    }
.poster-player-wrap {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
.poster-frame {
        max-width: 180px;
        margin: 0 auto;
    }
.cast-list {
        justify-content: center;
    }
.cast-card {
        flex: 0 0 40%;
        max-width: none;
    }
.episode-list {
        grid-template-columns: 1fr;
    }
.recommendation-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
.details-list {
        grid-template-columns: 1fr 1fr;
    }
.timeline-track {
        padding-bottom: 0.6rem;
    }
.movie-title {
        font-size: 1.4rem;
    }
.tagline-main {
        font-size: 1.2rem;
    }}
@media (max-width: 420px) {.details-list {
        grid-template-columns: 1fr;
    }
.comments-grid {
        grid-template-columns: 1fr;
    }
.recommendation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
.player-controls {
        gap: 0.2rem;
    }
.player-controls button {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }}

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}
