*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: #0a0e1a;
    color: #c8d0e0;
    font-family: "Arial Black", "Arial Bold", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.01em;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.visually-hidden-style {
    position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
header {
    background: #05070d;
    border-bottom: 1px solid #1a2233;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-shell {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 24px;
    max-width: 1600px;
    margin: 0 auto;
    flex-wrap: nowrap;
}
.site-brand {
    font-size: 1.35rem;
    font-weight: 900;
    color: #e8ecf5;
    letter-spacing: 0.08em;
    white-space: nowrap;
    text-transform: uppercase;
    border-left: 4px solid #d32f2f;
    padding-left: 10px;
    line-height: 1.2;
    flex-shrink: 0;
}
.site-brand:hover { color: #ffffff; }
.category-nav {
    display: flex;
    gap: 4px 12px;
    overflow-x: auto;
    padding: 4px 0;
    flex: 1 1 auto;
    scrollbar-width: thin;
    scrollbar-color: #2a3450 transparent;
}
.category-nav::-webkit-scrollbar { height: 4px; }
.category-nav::-webkit-scrollbar-thumb { background: #2a3450; }
.runtime-category {
    color: #8a94b0;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 4px 8px;
    border: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    letter-spacing: 0.02em;
}
.runtime-category:hover {
    color: #d32f2f;
    border-color: #d32f2f55;
    background: #d32f2f11;
}
main {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 12px;
}
.movie-overview-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 0;
    background: #0d1222;
    border: 1px solid #1a2233;
    margin: 16px 0;
    position: relative;
    overflow: hidden;
}
.movie-overview-shell.theater-mode {
    background: #000;
    border-color: #000;
}
.hero-poster-block {
    grid-column: 1 / 2;
    grid-row: 1 / 6;
    position: relative;
    background: #05070d;
    overflow: hidden;
    min-width: 0;
}
.poster-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    aspect-ratio: 2 / 3;
}
.main-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.15) saturate(0.8) brightness(0.9);
    position: relative;
    z-index: 1;
}
.poster-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg,
            rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px,
            transparent 1px, transparent 3px),
        repeating-linear-gradient(90deg,
            rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 2px,
            transparent 2px, transparent 5px);
    mix-blend-mode: overlay;
    z-index: 2;
    pointer-events: none;
}
.hero-play-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #d32f2f;
    z-index: 5;
    box-shadow: 0 0 0 6px #d32f2f44, 0 0 30px #d32f2f99;
    transition: transform 0.2s;
}
.hero-play-symbol::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-left: 22px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}
.hero-play-symbol:hover { transform: translate(-50%, -50%) scale(1.08); }
.title-tagline-group {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    padding: 20px 20px 8px;
    align-self: start;
}
.movie-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #f0e8dc;
    line-height: 1.15;
    letter-spacing: 0.01em;
    text-transform: none;
    transform: scaleY(0.94);
    transform-origin: top left;
    text-shadow: 2px 2px 0 #d32f2f88;
    margin-bottom: 6px;
}
.movie-tagline {
    font-size: 0.8rem;
    color: #a0a8c0;
    font-style: italic;
    letter-spacing: 0.04em;
    border-left: 2px solid #d32f2f;
    padding-left: 10px;
}
.director-statement-block {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    padding: 8px 20px 16px;
    align-self: start;
}
.director-statement {
    writing-mode: vertical-rl;
    max-height: 340px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: #b0b8d0;
    line-height: 1.7;
    letter-spacing: 0.1em;
    background: linear-gradient(180deg, #161d30, #0d1222);
    border-left: 1px solid #2a3450;
    border-right: 1px solid #2a3450;
    padding: 16px 8px;
    text-align: justify;
}
.synopsis-fragment {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    padding: 0 20px 12px;
    align-self: start;
}
.fragment-heading {
    font-size: 1.1rem;
    font-weight: 900;
    color: #e8ecf5;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 2px solid #d32f2f;
    display: inline-block;
    padding-bottom: 4px;
    margin-bottom: 10px;
}
.synopsis-paragraph {
    margin-bottom: 8px;
    color: #a8b0c8;
    font-size: 0.82rem;
    line-height: 1.6;
    text-align: justify;
}
.episode-status-fragment {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    padding: 0 20px 12px;
    align-self: start;
}
.episode-status-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: #d32f2f;
    font-weight: 700;
}
.episode-count, .episode-current { padding: 2px 8px; background: #1a2233; border-radius: 2px; }
.player-wrapper {
    width: 100%;
    max-width: none;
    min-width: 480px;
    background: #000;
    border: 1px solid #2a3450;
}
.movie-player {
    display: block;
    background: #000;
}
.player-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 6px 4px;
    background: #161d30;
    border: 1px solid #2a3450;
    border-top: 0;
}
.player-controls button {
    background: #1a2233;
    border: 1px solid #2a3450;
    color: #a0a8c0;
    font-size: 0.7rem;
    padding: 3px 6px;
    transition: background 0.2s, color 0.2s;
}
.player-controls button:hover { background: #d32f2f; color: #fff; border-color: #d32f2f; }
.cast-fragment {
    grid-column: 2 / 3;
    grid-row: 5 / 6;
    padding: 0 20px 16px;
    align-self: start;
}
.cast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.cast-card {
    background: #161d30;
    border: 1px solid #1a2233;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.2s;
}
.cast-card:hover { border-color: #d32f2f88; }
.cast-photo {
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #1a2233, #0d1222);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.cast-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
        rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px,
        transparent 1px, transparent 4px);
}
.actor-name {
    font-size: 1.4rem;
    font-weight: 900;
    color: #e8ecf5;
    letter-spacing: 0.2em;
    padding: 8px;
    background: linear-gradient(0deg, #0d1222cc, transparent);
    width: 100%;
    text-align: center;
    z-index: 2;
}
.cast-role {
    padding: 6px 8px;
    font-size: 0.72rem;
    color: #a0a8c0;
    border-top: 1px solid #1a2233;
    background: #0d1222;
}
.details-fragment {
    grid-column: 2 / 3;
    grid-row: 6 / 7;
    padding: 0 20px 16px;
    align-self: start;
}
.details-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    font-size: 0.75rem;
}
.details-list div {
    padding: 4px 0;
    border-bottom: 1px solid #1a2233;
    display: flex;
    gap: 6px;
}
.details-list dt { color: #8a94b0; font-weight: 400; flex-shrink: 0; }
.details-list dd { color: #c8d0e0; font-weight: 700; }
.seo-description { display: block; }
.timeline-fragment {
    margin: 16px 0;
    background: #0d1222;
    border: 1px solid #1a2233;
    padding: 16px 16px 20px;
}
.timeline-fragment .fragment-heading { margin-left: 4px; }
.timeline-scroll {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #d32f2f #1a2233;
    padding-bottom: 8px;
}
.timeline-scroll::-webkit-scrollbar { height: 6px; }
.timeline-scroll::-webkit-scrollbar-thumb { background: #d32f2f; }
.timeline-track {
    display: flex;
    gap: 0;
    width: max-content;
    padding: 12px 0;
    position: relative;
}
.timeline-track::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #2a3450;
}
.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 20px;
    min-width: 160px;
    max-width: 200px;
    position: relative;
    background: #0d1222;
    z-index: 1;
}
.timeline-item::after {
    content: "";
    width: 12px;
    height: 12px;
    background: #d32f2f;
    border: 2px solid #0d1222;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 8px);
    left: 50%;
    transform: translateX(-50%);
}
.timeline-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 1px solid #d32f2f44;
    border-radius: 50%;
    z-index: -1;
}
.timecode {
    color: #d32f2f;
    font-weight: 900;
    font-size: 0.85rem;
    margin-bottom: 12px;
    text-align: center;
}
.timeline-label {
    color: #a0a8c0;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.4;
    background: #161d30;
    padding: 8px;
    border: 1px solid #1a2233;
}
.full-quote {
    margin: 24px 0;
    padding: 16px 24px;
    border-left: 4px solid #d32f2f;
    background: #0d1222;
    color: #e8ecf5;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-align: center;
    font-style: italic;
}
.episodes-fragment {
    margin: 16px 0;
    background: #0d1222;
    border: 1px solid #1a2233;
    padding: 16px;
}
.episode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.episode-card {
    background: #161d30;
    border: 1px solid #1a2233;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
}
.episode-card:hover { border-color: #d32f2f; transform: translateY(-2px); }
.episode-thumb {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #1a2233 0%, #0d1222 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a3450;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #1a2233;
    text-transform: uppercase;
}
.episode-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
        rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px,
        transparent 1px, transparent 3px);
}
.episode-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 10px 4px;
}
.episode-number {
    background: #d32f2f;
    color: #fff;
    font-weight: 900;
    font-size: 0.75rem;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.episode-title {
    font-weight: 700;
    color: #e8ecf5;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}
.episode-summary {
    font-size: 0.75rem;
    color: #94a0b8;
    line-height: 1.5;
    padding: 4px 10px 8px;
    flex-grow: 0;
}
.episode-duration {
    font-size: 0.7rem;
    color: #d32f2f;
    font-weight: 700;
    padding: 0 10px 8px;
    border-top: 1px solid #1a2233;
    margin-top: auto;
    padding-top: 6px;
}
.comments-fragment {
    margin: 16px 0;
    background: #0d1222;
    border: 1px solid #1a2233;
    padding: 16px;
}
.comment-masonry {
    columns: 3;
    column-gap: 10px;
}
.comment-bubble {
    break-inside: avoid;
    margin-bottom: 10px;
    background: #161d30;
    border: 1px solid #2a3450;
    padding: 10px 12px;
    position: relative;
    border-radius: 2px;
}
.comment-bubble::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
        transparent 0px, transparent 4px,
        rgba(211,47,47,0.12) 4px, rgba(211,47,47,0.12) 5px,
        transparent 5px, transparent 10px);
    opacity: 0.3;
    pointer-events: none;
}
.comment-nickname {
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    color: #d32f2f;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}
.comment-text {
    font-size: 0.8rem;
    color: #a8b0c8;
    line-height: 1.5;
}
.recommendation-region {
    margin: 16px 0;
    background: #0d1222;
    border: 1px solid #1a2233;
    padding: 16px;
}
.recommendation-title {
    font-size: 1rem;
    font-weight: 900;
    color: #e8ecf5;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    border-left: 3px solid #d32f2f;
    padding-left: 10px;
}
.rec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.rec-item {
    background: #161d30;
    border: 1px solid #1a2233;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
    text-align: left;
    overflow: hidden;
}
.rec-item:hover { border-color: #d32f2f; transform: translateY(-2px); }
.rec-item img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-bottom: 1px solid #1a2233;
}
.rec-item [data-runtime="name"] {
    font-size: 0.9rem;
    font-weight: 700;
    color: #e8ecf5;
    padding: 8px 10px 2px;
    letter-spacing: 0.03em;
}
.rec-item [data-runtime="blurb"] {
    font-size: 0.75rem;
    color: #94a0b8;
    padding: 0 10px 10px;
    line-height: 1.4;
}
footer {
    background: #05070d;
    border-top: 1px solid #1a2233;
    margin-top: 24px;
}
.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-disclaimer {
    font-size: 0.75rem;
    color: #6a7590;
    line-height: 1.6;
}
.friend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
    align-items: center;
    font-size: 0.78rem;
}
.friend-label { color: #6a7590; font-weight: 700; }
.runtime-friend-link {
    color: #8a94b0;
    transition: color 0.2s;
    text-decoration: underline;
    text-decoration-color: #2a3450;
    text-underline-offset: 3px;
}
.runtime-friend-link:hover { color: #d32f2f; text-decoration-color: #d32f2f; }
.footer-links {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
}
.footer-links a {
    color: #8a94b0;
    transition: color 0.2s;
    text-decoration: none;
}
.footer-links a:hover { color: #d32f2f; text-decoration: underline; }
a[data-contract="site-name"] { color: #e8ecf5; text-decoration: none; }
a[data-contract="site-name"]:hover { color: #ffffff; }
a.runtime-category { color: #8a94b0; text-decoration: none; }
a.runtime-category:hover { color: #d32f2f; text-decoration: none; }
a.rec-item { color: inherit; text-decoration: none; }
a.runtime-friend-link { color: #8a94b0; text-decoration: underline; text-decoration-color: #2a3450; }
a.runtime-friend-link:hover { color: #d32f2f; }
a[data-contract="footer-home"] { color: #8a94b0; text-decoration: none; }
a[data-contract="footer-home"]:hover { color: #d32f2f; text-decoration: underline; }
a[data-contract="footer-sitemap"] { color: #8a94b0; text-decoration: none; }
a[data-contract="footer-sitemap"]:hover { color: #d32f2f; text-decoration: underline; }
.lights-dim main { opacity: 0.7; filter: brightness(0.5); transition: opacity 0.3s, filter 0.3s; }
.lights-dim header { opacity: 0.5; }
.lights-dim footer { opacity: 0.5; }
.theater-mode .hero-poster-block { display: none; }
.theater-mode .title-tagline-group, .theater-mode .director-statement-block, .theater-mode .synopsis-fragment, .theater-mode .episode-status-fragment, .theater-mode .cast-fragment, .theater-mode .details-fragment { grid-column: 1 / -1; padding-left: 20px; padding-right: 20px; }
.theater-mode .episode-status-fragment { grid-row: 1 / 2; }
.theater-mode .player-wrapper { min-width: 0; }
@media (max-width: 1200px) {.movie-overview-shell {
        grid-template-columns: 1fr;
    }
.hero-poster-block { grid-column: 1 / -1; grid-row: auto; }
.poster-frame { aspect-ratio: auto; height: 60vh; min-height: 0; }
.title-tagline-group { grid-column: 1 / -1; grid-row: auto; }
.director-statement-block { grid-column: 1 / -1; grid-row: auto; }
.director-statement { writing-mode: horizontal-tb; max-height: none; }
.synopsis-fragment { grid-column: 1 / -1; grid-row: auto; }
.episode-status-fragment { grid-column: 1 / -1; grid-row: auto; }
.cast-fragment { grid-column: 1 / -1; grid-row: auto; }
.details-fragment { grid-column: 1 / -1; grid-row: auto; }
.player-wrapper { min-width: 0; }
.episode-grid { grid-template-columns: repeat(2, 1fr); }
.comment-masonry { columns: 2; }
.rec-grid { grid-template-columns: repeat(2, 1fr); }}
@media (max-width: 768px) {.header-shell { flex-direction: column; align-items: flex-start; gap: 8px; padding: 10px 16px; }
.category-nav { width: 100%; }
.movie-overview-shell { margin: 8px 0; }
.poster-frame { height: 50vh; }
.movie-title { font-size: 1.2rem; }
.episode-grid { grid-template-columns: 1fr; }
.comment-masonry { columns: 1; }
.rec-grid { grid-template-columns: 1fr; }
.cast-grid { grid-template-columns: 1fr; }
.details-list { grid-template-columns: 1fr; }
.timeline-item { min-width: 140px; }
.player-controls { justify-content: center; }
.player-controls button { flex: 1 1 30%; }
.full-quote { font-size: 0.95rem; }}
@media (max-width: 480px) {.player-wrapper { min-width: 0; width: 100%; }
.poster-frame { height: 40vh; }
.hero-play-symbol { width: 50px; height: 50px; }
.hero-play-symbol::after { border-left-width: 16px; border-top-width: 10px; border-bottom-width: 10px; }
.footer-content { padding: 16px; }
.friend-links { flex-direction: column; align-items: flex-start; gap: 6px; }
.timeline-item { min-width: 120px; padding: 0 12px; }}
.play .hero-play-symbol::after { border-left: 22px solid #fff; }
.mute .movie-player { opacity: 0.8; }
.pip .movie-player { border: 2px solid #d32f2f; }
.fullscreen .movie-player { object-fit: contain; }

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}
