:root {
  --ink: #0a0e11;
  --ink-2: #10161a;
  --ink-3: #161e23;
  --slate: #1d272d;
  --line: #2a363d;
  --line-soft: #222d33;
  --rain: #7f929c;
  --rain-bright: #aebec6;
  --tape: #8a6a3f;
  --tape-bright: #b98e53;
  --tape-dim: #4d3d26;
  --red: #7a1f22;
  --red-bright: #c0392b;
  --red-glow: #e05a4a;
  --text: #c3ced4;
  --text-dim: #6d7c85;
  --text-faint: #4a565e;
  --mono: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", monospace;
  --sans: "Helvetica Neue", "Arial Narrow", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --gap: 14px;
  --gap-tight: 8px;
  --pad: 12px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  background: var(--ink);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background:
    radial-gradient(ellipse at 78% 8%, rgba(122, 31, 34, 0.10), transparent 55%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.16) 0 1px, transparent 1px 3px),
    var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  font-stretch: condensed;
  line-height: 1.45;
  letter-spacing: 0.01em;
  min-height: 100%;
  overflow-x: hidden;
}
body.lights-dim {
  filter: brightness(0.82) contrast(1.06);
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--rain-bright);
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
ul, ol, dl {
  list-style: none;
}
::selection {
  background: var(--red);
  color: var(--text);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 14, 17, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--gap);
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
  padding: 9px 16px;
}
.brand-mark, a[data-contract="site-name"] {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tape-bright);
  text-decoration: none;
  padding-left: 10px;
  border-left: 3px solid var(--red);
  white-space: nowrap;
}
a[data-contract="site-name"]:hover {
  color: var(--red-glow);
}
.categories-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  min-width: 0;
}
.runtime-category, a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--rain);
  text-decoration: none;
  padding: 3px 9px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  clip-path: polygon(0 0, 100% 0, 100% 72%, 88% 100%, 0 100%);
}
a.runtime-category:hover {
  color: var(--text);
  border-color: var(--tape);
  background: var(--slate);
}
.page-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  grid-template-areas:
    "media identity"
    "media player"
    "meta meta";
  gap: 18px 26px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.hero-media {
  grid-area: media;
  position: relative;
  align-self: start;
}
.poster-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--ink-2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}
.poster-frame img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08) brightness(0.92);
}
.poster-caption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tape-bright);
  background: var(--ink-3);
  border-top: 1px solid var(--line);
  padding: 6px 9px;
}
.hero-traces {
  position: absolute;
  inset: 6% -6% 6% -14%;
  z-index: 1;
  pointer-events: none;
}
.trace-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tape-dim) 22%, var(--tape) 46%, transparent 92%);
  opacity: 0.5;
}
.trace-line::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 8%;
  width: 5px;
  height: 7px;
  background: var(--red);
  opacity: 0.75;
}
.trace-1 { top: 6%; }
.trace-2 { top: 20%; opacity: 0.32; }
.trace-3 { top: 34%; }
.trace-4 { top: 48%; opacity: 0.4; }
.trace-5 { top: 62%; }
.trace-6 { top: 76%; opacity: 0.28; }
.trace-7 { top: 90%; }
.hero-identity {
  grid-area: identity;
  align-self: end;
  padding-top: 14px;
  min-width: 0;
}
.hero-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--tape-bright);
  margin-bottom: 10px;
  border-left: 2px solid var(--red);
  padding-left: 9px;
}
.hero-title {
  font-size: clamp(1.7rem, 4.2vw, 2.9rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: #e6edf1;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.6);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 96% 100%, 0 100%);
}
.hero-tagline {
  margin-top: 12px;
  max-width: 26em;
  font-size: 14px;
  line-height: 1.5;
  color: var(--rain-bright);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.hero-seo {
  margin-top: 12px;
  max-width: 38em;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--text-dim);
}
.player-panel {
  grid-area: player;
  min-width: 0;
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.player-panel video {
  display: block;
  width: 100%;
  background: #000;
  border-bottom: 1px solid var(--line);
}
.player-panel.is-theater {
  outline: 1px solid var(--red);
  box-shadow: 0 0 0 1px rgba(192, 57, 43, 0.4), 0 0 34px rgba(122, 31, 34, 0.35);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 9px;
  background: var(--ink-3);
}
.ctrl-btn {
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--rain-bright);
  background: var(--slate);
  border: 1px solid var(--line);
  padding: 4px 9px;
  clip-path: polygon(0 0, 100% 0, 100% 74%, 90% 100%, 0 100%);
}
.ctrl-btn:hover {
  color: var(--text);
  border-color: var(--tape);
}
.ctrl-btn.is-playing, .ctrl-btn.is-active {
  color: var(--ink);
  background: var(--tape-bright);
  border-color: var(--tape-bright);
}
.ctrl-btn.is-muted {
  color: var(--red-glow);
  border-color: var(--red);
}
.ctrl-range {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  height: 3px;
  background: var(--line);
  flex: 1 1 90px;
  min-width: 70px;
  border: none;
  outline: none;
}
.ctrl-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 9px;
  height: 14px;
  background: var(--red-bright);
  border: none;
  cursor: pointer;
}
.ctrl-range::-moz-range-thumb {
  width: 9px;
  height: 14px;
  background: var(--red-bright);
  border: none;
  cursor: pointer;
}
.ctrl-select {
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--rain-bright);
  background: var(--slate);
  border: 1px solid var(--line);
  padding: 3px 4px;
}
.overview-meta {
  grid-area: meta;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-areas:
    "details status"
    "details cast"
    "synopsis synopsis";
  gap: var(--gap) 22px;
  align-items: start;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.block-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tape-bright);
  padding-bottom: 5px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.detail-block {
  grid-area: details;
  min-width: 0;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px 16px;
}
.detail-row {
  display: grid;
  grid-template-columns: 5.4em minmax(0, 1fr);
  gap: 6px;
  padding: 3px 0;
  border-bottom: 1px dotted var(--line-soft);
  font-size: 12.5px;
}
.detail-row dt {
  color: var(--text-faint);
  letter-spacing: 0.06em;
}
.detail-row dd {
  color: var(--text);
}
.status-block {
  grid-area: status;
  min-width: 0;
}
.status-line {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.status-num {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--red-glow);
  padding: 0 2px;
}
.status-action {
  cursor: pointer;
  margin-top: 9px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #f0e6dc;
  background: var(--red);
  border: 1px solid var(--red-bright);
  padding: 6px 16px;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
}
.status-action:hover {
  background: var(--red-bright);
}
.cast-block {
  grid-area: cast;
  min-width: 0;
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px 12px;
}
.cast-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 4px 0 4px 8px;
  border-left: 2px solid var(--tape-dim);
}
.cast-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}
.cast-role {
  font-size: 10.5px;
  color: var(--text-faint);
  font-family: var(--mono);
  letter-spacing: 0.06em;
}
.synopsis-block {
  grid-area: synopsis;
  min-width: 0;
  padding-top: 6px;
}
.synopsis-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 20px;
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--text-dim);
}
.synopsis-body p {
  padding-left: 9px;
  border-left: 1px solid var(--line-soft);
}
.section-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rain-bright);
  margin-bottom: 12px;
  padding-left: 10px;
  border-left: 3px solid var(--red);
}
.timeline-section {
  min-width: 0;
}
.timeline-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 24px;
  border-left: 1px dashed var(--tape-dim);
  padding-left: 16px;
  margin-left: 4px;
}
.timeline-item {
  position: relative;
  padding: 5px 0 7px 12px;
  border-bottom: 1px solid var(--line-soft);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 11px;
  width: 7px;
  height: 7px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 62%, 0 100%);
}
.timecode {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--tape-bright);
}
.timeline-label {
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--text);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  align-items: start;
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 12px 11px 9px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--tape);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
.episode-card::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 14px;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--line) 0 2px, transparent 2px 4px);
}
.episode-index {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  background: var(--tape-bright);
  padding: 2px 7px 3px;
  align-self: flex-start;
  letter-spacing: 0.04em;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 84% 100%, 0 100%);
}
.episode-title {
  margin-top: 8px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #dce5ea;
}
.episode-summary {
  margin-top: 5px;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-duration {
  margin-top: 7px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-faint);
  border-top: 1px dotted var(--line-soft);
  padding-top: 5px;
}
.comments-section {
  min-width: 0;
}
.comment-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap) 18px;
  align-items: start;
  padding: 14px;
  background:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.22) 0 1px, transparent 1px 4px),
    var(--ink-3);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.comment-note {
  position: relative;
  min-width: 0;
  padding: 10px 11px 9px;
  background: #1b2226;
  border: 1px solid var(--line-soft);
  border-top: 2px solid var(--tape);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}
.comment-note:nth-child(even) {
  transform: rotate(0.5deg);
  border-top-color: var(--red);
}
.comment-note:nth-child(3n) {
  transform: rotate(-0.7deg);
}
.comment-nick {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--tape-bright);
  margin-bottom: 5px;
}
.comment-text {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text);
}
.rec-section {
  min-width: 0;
}
.rec-heading {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--rain-bright);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
  margin-bottom: 10px;
}
.rec-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 7px 14px;
  align-items: start;
  border-left: 1px solid var(--line-soft);
  padding-left: 12px;
}
.rec-item, a.rec-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-areas:
    "pic name"
    "pic blurb";
  gap: 2px 9px;
  align-items: start;
  min-width: 0;
  padding: 4px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid transparent;
}
a.rec-item:hover {
  border-color: var(--line);
  background: var(--ink-2);
}
.rec-item img, [data-runtime="recommendation"] img {
  grid-area: pic;
  width: 100%;
  max-width: 46px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: var(--ink-3);
  border: 1px solid var(--line);
  filter: saturate(0.7) brightness(0.9);
}
.rec-name {
  grid-area: name;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}
.rec-blurb {
  grid-area: blurb;
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-faint);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 16px 34px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--text-faint);
  max-width: 68em;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--tape-bright);
  text-decoration: none;
  border-bottom: 1px solid var(--tape-dim);
  padding-bottom: 2px;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--red-glow);
  border-bottom-color: var(--red);
}
.footer-friends {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 14px;
  padding-top: 8px;
  border-top: 1px dotted var(--line-soft);
}
.friends-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.runtime-friend-link, a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--rain);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
a.runtime-friend-link:hover {
  color: var(--rain-bright);
  border-bottom-color: var(--tape);
}
.player .is-playing, .data-player-action.is-playing, .click .is-active, .input.is-active {
  color: var(--ink);
  background: var(--tape-bright);
}
.player.is-theater, .theater.is-theater {
  outline: 1px solid var(--red);
}
.progress, .volume, .speed, .timeupdate {
  accent-color: var(--red-bright);
}
.play.is-playing, .mute.is-muted, .fullscreen.is-active, .pip.is-active, .light.is-active {
  border-color: var(--red-bright);
}
.lights-dim .hero-shell {
  border-bottom-color: var(--red);
}
.change, .click {
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
@media (max-width: 1000px) {.hero-shell {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "media"
      "identity"
      "player"
      "meta";
    gap: 16px;
  }
.hero-media {
    justify-self: start;
  }
.hero-identity {
    padding-top: 4px;
  }
.overview-meta {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "details"
      "status"
      "cast"
      "synopsis";
    gap: 16px;
  }
.timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 700px) {body {
    font-size: 13.5px;
  }
.page-main {
    padding: 14px 12px 30px;
    gap: 18px;
  }
.header-inner {
    padding: 8px 12px;
    gap: 8px;
  }
.categories-bar {
    margin-left: 0;
    width: 100%;
  }
.poster-frame {
    max-width: 100%;
  }
.hero-traces {
    inset: 6% -2% 6% -8%;
  }
.overview-meta {
    padding-top: 12px;
  }
.detail-list {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.synopsis-body {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-board {
    grid-template-columns: minmax(0, 1fr);
    padding: 11px;
  }
.comment-note:nth-child(even), .comment-note:nth-child(3n) {
    transform: none;
  }
.rec-list {
    grid-template-columns: minmax(0, 1fr);
  }
.site-footer {
    padding: 16px 12px 28px;
  }}
@media (max-width: 420px) {.cast-list {
    grid-template-columns: minmax(0, 1fr);
  }
.player-controls {
    gap: 5px;
  }
.ctrl-btn {
    padding: 4px 7px;
    font-size: 10.5px;
  }}

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}
