*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
    background: #1a1d24;
    color: #c8c9ce;
    line-height: 1.6;
    min-height: 100vh;
}
img, video {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 2rem;
    background: #13151a;
    border-bottom: 1px solid #2a2d35;
    position: sticky;
    top: 0;
    z-index: 100;
}
a[data-contract="site-name"] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d9a441;
    letter-spacing: 0.15em;
    text-decoration: none;
    font-family: "Songti SC", serif;
}
a[data-contract="site-name"]:hover {
    color: #b8892f;
}
[data-contract="categories"] {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    padding: 0.2rem 0;
}
.runtime-category {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    font-size: 0.85rem;
    color: #9a9ca3;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 2rem;
    white-space: nowrap;
    transition: all 0.2s;
    text-decoration: none;
}
.runtime-category:hover {
    color: #d9a441;
    border-color: #d9a441;
    background: rgba(217, 164, 65, 0.08);
}
.hero-atrium {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    overflow: hidden;
    border-bottom: 4px solid #2a2d35;
    background: #1a1d24;
}
.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(217, 164, 65, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(60, 80, 110, 0.3) 0%, transparent 55%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 6px),
        linear-gradient(180deg, #23262e 0%, #1a1d24 100%);
    z-index: 0;
}
.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 49.9%, rgba(217,164,65,0.12) 50%, transparent 50.1%),
        linear-gradient(0deg, transparent 49.9%, rgba(217,164,65,0.12) 50%, transparent 50.1%),
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(26,29,36,0.9) 100%);
    background-size: 100% 100%;
    mix-blend-mode: overlay;
}
.hero-ticket {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    padding: 1.8rem 2.5rem;
    background: linear-gradient(135deg, #2a2d35, #1a1d24);
    border: 1px solid #3a3d45;
    border-radius: 6px;
    box-shadow:
        0 0 30px rgba(217, 164, 65, 0.2),
        0 0 60px rgba(217, 164, 65, 0.08),
        inset 0 0 20px rgba(0,0,0,0.3);
    transform: rotate(-2deg);
    position: relative;
}
.hero-ticket::before {
    content: "当";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: #d9a441;
    background: #1a1d24;
    padding: 0 0.8rem;
    border: 1px solid #3a3d45;
    border-radius: 2px;
    white-space: nowrap;
}
.hero-ticket-symbol {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 8px rgba(217,164,65,0.4));
    animation: ticketFloat 3s ease-in-out infinite;
}
.hero-ticket-symbol:nth-child(2) {
    animation-delay: 0.5s;
}
.hero-ticket-symbol:nth-child(3) {
    animation-delay: 1s;
}
@keyframes ticketFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}
.hero-tagline-block {
    position: relative;
    z-index: 2;
    margin-top: 2.5rem;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 2rem;
    left: 0;
}
.hero-tagline {
    font-size: 1.6rem;
    font-weight: 700;
    color: #d9a441;
    letter-spacing: 0.3em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
    font-family: "Songti SC", serif;
    padding: 0.3rem 1rem;
    display: inline-block;
    border-top: 1px solid rgba(217,164,65,0.3);
    border-bottom: 1px solid rgba(217,164,65,0.3);
}
.movie-unit {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: #1d2027;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.poster-player-wrap {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}
.poster-column {
    position: relative;
}
.poster-img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #2a2d35;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.player-column {
    min-width: 0;
    position: relative;
}
.player-video {
    display: block;
    border-radius: 4px;
    background: #000;
    border: 1px solid #2a2d35;
}
.player-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.6rem;
    padding: 0.5rem;
    background: #13151a;
    border-radius: 4px;
    border: 1px solid #2a2d35;
}
.player-controls button {
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    background: transparent;
    border: 1px solid #3a3d45;
    border-radius: 3px;
    color: #9a9ca3;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.player-controls button:hover {
    border-color: #d9a441;
    color: #d9a441;
    background: rgba(217,164,65,0.08);
}
.title-tagline-group {
    margin-top: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #2a2d35;
}
.movie-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e8e8ea;
    letter-spacing: 0.05em;
    font-family: "Songti SC", serif;
}
.movie-tagline {
    font-size: 1rem;
    color: #d9a441;
    margin-top: 0.3rem;
    letter-spacing: 0.2em;
    font-style: italic;
}
.synopsis-panel {
    margin-top: 1.5rem;
    padding: 0.5rem 0;
}
.panel-heading {
    font-size: 1.1rem;
    color: #d9a441;
    margin-bottom: 0.8rem;
    padding-left: 0.8rem;
    border-left: 3px solid #d9a441;
    letter-spacing: 0.1em;
    font-weight: 700;
}
.synopsis-paragraph {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #b0b2b8;
    text-align: justify;
}
.cast-panel {
    margin-top: 1.5rem;
    padding: 0.5rem 0;
}
.cast-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.cast-card {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: #23262e;
    border: 1px solid #2a2d35;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #c8c9ce;
    position: relative;
    transition: all 0.2s;
    cursor: default;
}
.cast-card::before {
    content: "✒";
    margin-right: 0.4rem;
    color: #d9a441;
    font-size: 0.85rem;
}
.cast-card:hover {
    border-color: #d9a441;
    color: #d9a441;
    transform: translateY(-2px);
}
.episode-status-block {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.2rem;
    padding: 0.8rem 0;
    border-top: 1px solid #2a2d35;
    border-bottom: 1px solid #2a2d35;
}
.episode-current {
    color: #d9a441;
    font-weight: 700;
    font-size: 0.95rem;
}
.episode-total, .episode-duration {
    color: #9a9ca3;
    font-size: 0.9rem;
}
.episode-status-block span:not(:last-child)::after {
    content: "·";
    margin-left: 1rem;
    color: #3a3d45;
}
.details-panel {
    margin-top: 1.2rem;
}
.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
.detail-item {
    display: flex;
    flex-direction: column;
    padding: 0.4rem 0.6rem;
    background: #23262e;
    border-radius: 3px;
}
.detail-item dt {
    font-size: 0.75rem;
    color: #9a9ca3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.detail-item dd {
    font-size: 0.95rem;
    color: #e8e8ea;
    margin-top: 0.1rem;
    font-weight: 600;
}
.timeline-section {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, #1d2027, #1a1d24);
    border-radius: 8px;
}
.timeline-heading {
    font-size: 1.3rem;
    color: #d9a441;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
    font-weight: 700;
}
.timeline-horizontal {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding: 1rem 0;
    position: relative;
}
.timeline-horizontal::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #d9a441, #2a2d35);
    transform: translateY(-50%);
}
.timeline-item {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.8rem;
    position: relative;
    background: transparent;
}
.timeline-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: #1a1d24;
    border: 2px solid #d9a441;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #d9a441;
    border-radius: 50%;
    z-index: 2;
}
.timeline-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 6px rgba(217,164,65,0.3));
    position: relative;
    z-index: 3;
}
.timeline-code {
    font-size: 0.8rem;
    color: #9a9ca3;
    margin-top: 0.3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.timeline-label {
    font-size: 0.95rem;
    color: #e8e8ea;
    margin-top: 0.2rem;
    font-weight: 700;
}
.episodes-section {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem 1.5rem;
    background: #1d2027;
    border-radius: 8px;
}
.episodes-heading {
    font-size: 1.3rem;
    color: #d9a441;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.2em;
    font-weight: 700;
}
.episode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}
.episode-cell {
    padding: 1rem;
    background:
        linear-gradient(180deg, rgba(217,164,65,0.03) 0%, transparent 100%),
        #23262e;
    border: 1px solid #2a2d35;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}
.episode-cell::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #d9a441, transparent);
    opacity: 0;
    transition: opacity 0.2s;
}
.episode-cell:hover {
    border-color: #3a3d45;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.episode-cell:hover::before {
    opacity: 1;
}
.episode-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d9a441;
    line-height: 1;
    margin-bottom: 0.3rem;
    font-family: "Songti SC", serif;
}
.episode-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e8e8ea;
    margin-bottom: 0.4rem;
    letter-spacing: 0.1em;
}
.episode-summary {
    font-size: 0.8rem;
    color: #9a9ca3;
    line-height: 1.5;
    flex: 1;
}
.episode-duration {
    font-size: 0.75rem;
    color: #6a6d75;
    margin-top: 0.5rem;
    padding-top: 0.4rem;
    border-top: 1px solid #2a2d35;
}
.episode-more {
    text-align: center;
    margin-top: 1.5rem;
    padding: 0.8rem;
    color: #9a9ca3;
    font-size: 0.9rem;
    border: 1px dashed #2a2d35;
    border-radius: 4px;
    letter-spacing: 0.1em;
}
.comments-section {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem 1.5rem;
    background: #1a1d24;
    border-radius: 8px;
}
.comments-heading {
    font-size: 1.3rem;
    color: #d9a441;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.2em;
    font-weight: 700;
}
.comments-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0.2rem 1rem;
}
.comment-bubble {
    flex: 0 0 260px;
    padding: 1rem 1.2rem;
    background: #23262e;
    border-radius: 12px;
    border: 1px solid #2a2d35;
    position: relative;
}
.comment-bubble::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #23262e;
}
.comment-author {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #d9a441;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}
.comment-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b2b8;
}
.recommendation-region {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem 1.5rem;
    background: #1d2027;
    border-radius: 8px;
}
.recommendation-region + .recommendation-region {
    margin-top: 1.5rem;
}
.recommendation-heading {
    font-size: 1.2rem;
    color: #d9a441;
    margin-bottom: 1.2rem;
    text-align: center;
    letter-spacing: 0.15em;
    font-weight: 700;
    position: relative;
}
.recommendation-heading::before, .recommendation-heading::after {
    content: "—";
    color: #3a3d45;
    margin: 0 0.8rem;
}
.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
a.rec-card {
    display: flex;
    flex-direction: column;
    background: #23262e;
    border: 1px solid #2a2d35;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}
a.rec-card:hover {
    border-color: #d9a441;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
[data-runtime="recommendation"] img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-bottom: 1px solid #2a2d35;
}
.rec-card [data-runtime="name"] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e8e8ea;
    padding: 0.6rem 0.8rem 0.2rem;
    font-family: "Songti SC", serif;
}
.rec-card [data-runtime="blurb"] {
    font-size: 0.8rem;
    color: #9a9ca3;
    padding: 0 0.8rem 0.8rem;
    line-height: 1.4;
    flex: 1;
}
.recommendation-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
a.rec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem;
    background: #23262e;
    border: 1px solid #2a2d35;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}
a.rec-item:hover {
    border-color: #d9a441;
    background: #262a33;
    transform: translateX(4px);
}
.rec-item img {
    width: 80px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.rec-item [data-runtime="name"] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e8e8ea;
    min-width: 100px;
    font-family: "Songti SC", serif;
}
.rec-item [data-runtime="blurb"] {
    font-size: 0.85rem;
    color: #9a9ca3;
    line-height: 1.4;
    flex: 1;
    text-align: right;
}
footer {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem 1.5rem;
    background: #13151a;
    border-radius: 8px 8px 0 0;
    border-top: 3px solid #d9a441;
}
.footer-friend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    margin-bottom: 1.5rem;
}
.friend-links-label {
    font-size: 0.9rem;
    color: #d9a441;
    font-weight: 700;
    margin-right: 0.5rem;
    letter-spacing: 0.1em;
}
a.runtime-friend-link {
    font-size: 0.8rem;
    color: #9a9ca3;
    padding: 0.2rem 0.6rem;
    border: 1px solid #2a2d35;
    border-radius: 2rem;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}
a.runtime-friend-link:hover {
    color: #d9a441;
    border-color: #d9a441;
    background: rgba(217,164,65,0.08);
}
.footer-disclaimer {
    font-size: 0.8rem;
    color: #6a6d75;
    padding: 1rem 0;
    border-top: 1px solid #2a2d35;
    border-bottom: 1px solid #2a2d35;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: justify;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
    font-size: 0.85rem;
    color: #9a9ca3;
    text-decoration: none;
    padding: 0.3rem 0.8rem;
    border: 1px solid transparent;
    border-radius: 2rem;
    transition: all 0.2s;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
    color: #d9a441;
    border-color: #d9a441;
}
.player-video.theater-mode {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    z-index: 999;
    box-shadow: 0 0 60px rgba(0,0,0,0.9);
}
.player-video.lights-dim {
    filter: brightness(0.5);
}
.player-video.is-muted {
    opacity: 0.8;
}
.player-video.is-muted::after {
    content: "🔇";
    position: absolute;
    top: 50%;
    left: 50%;
}
@media (max-width: 992px) {.poster-player-wrap {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 1rem;
    }
.details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
.recommendation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
.episode-grid {
        grid-template-columns: repeat(2, 1fr);
    }}
@media (max-width: 768px) {header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
    }
.hero-atrium {
        min-height: 50vh;
        padding: 2rem 1rem;
    }
.hero-ticket {
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }
.hero-ticket-symbol {
        font-size: 2rem;
    }
.hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 0.15em;
    }
.movie-unit {
        margin: 1rem 0.5rem;
        padding: 1.5rem 1rem;
    }
.poster-player-wrap {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
.poster-column {
        max-width: 200px;
        margin: 0 auto;
    }
.poster-img {
        aspect-ratio: 2 / 3;
    }
.movie-title {
        font-size: 1.4rem;
    }
.details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
.timeline-horizontal {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
.timeline-item {
        flex: 0 0 150px;
    }
.episode-grid {
        grid-template-columns: 1fr;
    }
.recommendation-grid {
        grid-template-columns: 1fr;
    }
.recommendation-list {
        flex-direction: column;
    }
a.rec-item {
        flex-wrap: wrap;
    }
.rec-item [data-runtime="blurb"] {
        flex-basis: 100%;
        text-align: left;
        padding-left: 90px;
    }
.comments-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
.comment-bubble {
        flex: 0 0 220px;
    }}
@media (max-width: 480px) {.hero-ticket {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem;
    }
.hero-ticket-symbol {
        font-size: 1.6rem;
    }
.hero-tagline {
        font-size: 0.95rem;
    }
.movie-title {
        font-size: 1.2rem;
    }
.cast-list {
        gap: 0.5rem;
    }
.cast-card {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
.episode-status-block {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }
.episode-status-block span:not(:last-child)::after {
        content: "";
        margin: 0;
    }
.details-grid {
        grid-template-columns: 1fr;
    }
.timeline-item {
        flex: 0 0 130px;
    }
.footer-friend-links {
        flex-direction: column;
        align-items: flex-start;
    }
.footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }}
@media print {body {
        background: #fff;
        color: #000;
    }
.hero-atrium, .player-column, .comments-section, .recommendation-region, footer {
        display: none;
    }
.movie-unit, .timeline-section, .episodes-section {
        background: #fff;
        color: #000;
        box-shadow: none;
        border: none;
    }
.movie-title, .episode-title, .timeline-label {
        color: #000;
    }
.panel-heading, .episodes-heading, .timeline-heading {
        color: #333;
        border-color: #333;
    }}

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}
