:root {
  --bg-deep: #0e1115;
  --bg-panel: #141920;
  --bg-panel-2: #191f27;
  --bg-rail: #1c232c;
  --line: #2a323d;
  --line-soft: #212832;
  --ink: #d8dee6;
  --ink-dim: #8b96a4;
  --ink-faint: #66707d;
  --warm: #f0e6d8;
  --red: #7d1f27;
  --red-bright: #a52a34;
  --blue-cold: #4a5d70;
  --peephole: #0a0c0f;
  --gap: 10px;
  --gap-tight: 6px;
  --radius: 2px;
  --font-narrow: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--font-narrow);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--ink);
  text-decoration: none;
}
h1, h2, h3, p, dl, dd, dt, ol, ul, li {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(14, 17, 21, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  color: var(--warm);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
  border-left: 3px solid var(--red-bright);
  padding-left: 8px;
}
a[data-contract="site-name"]:hover {
  color: #fff;
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex: 1 1 320px;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  color: var(--ink-dim);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border: 1px solid var(--line-soft);
  background: var(--bg-panel);
  border-radius: var(--radius);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--warm);
  border-color: var(--red);
  background: #1d1417;
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.block-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--warm);
  padding-left: 9px;
  border-left: 3px solid var(--red-bright);
  margin-bottom: 8px;
  line-height: 1.2;
}
.overview-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
  gap: 16px;
  align-items: start;
  background: linear-gradient(180deg, #131820 0%, #10151b 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}
.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--peephole);
  border: 1px solid var(--line);
}
.hero-poster {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.06) brightness(0.86);
}
.hero-peephole-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.peephole-wall-texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0 1px, transparent 1px 7px),
    radial-gradient(120% 90% at 12% 8%, rgba(122, 30, 38, 0.28), transparent 58%),
    radial-gradient(100% 80% at 92% 96%, rgba(74, 93, 112, 0.34), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.85;
}
.peephole-doorplate {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--warm);
  background: rgba(10, 12, 15, 0.72);
  border: 1px solid rgba(240, 230, 216, 0.28);
  padding: 2px 7px;
  border-radius: var(--radius);
  font-variant-numeric: tabular-nums;
}
.peephole-doorplate + .peephole-doorplate {
  top: 40px;
  right: 22px;
  color: var(--ink-dim);
  border-color: rgba(139, 150, 164, 0.3);
}
.hero-tagline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 12px 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 10, 13, 0.88) 62%, rgba(8, 10, 13, 0.96) 100%);
  color: var(--warm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
}
.hero-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.movie-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.25;
  color: var(--warm);
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 8px;
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #05070a;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.movie-player {
  display: block;
  width: 100%;
  background: #05070a;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap-tight);
  padding: 7px 8px;
  background: var(--bg-panel-2);
  border-top: 1px solid var(--line);
}
.pc-btn {
  background: var(--bg-rail);
  border: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.pc-btn:hover {
  color: var(--warm);
  border-color: var(--red);
}
.pc-play {
  color: var(--warm);
  border-color: var(--red);
  background: #1e1417;
}
.pc-play.is-playing {
  background: var(--red);
  border-color: var(--red-bright);
  color: #fff;
}
.pc-btn.is-active {
  color: var(--warm);
  border-color: var(--red-bright);
  background: #241518;
}
.pc-mute.is-muted {
  color: var(--red-bright);
  border-color: var(--red-bright);
}
.pc-select {
  background: var(--bg-rail);
  border: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 11px;
  padding: 3px 5px;
  border-radius: var(--radius);
}
.pc-select:hover {
  color: var(--warm);
  border-color: var(--red);
}
.pc-range {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  outline: none;
}
.pc-progress {
  flex: 1 1 140px;
  min-width: 90px;
}
.pc-volume {
  flex: 0 1 76px;
  min-width: 60px;
}
.pc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red-bright);
  border: 1px solid var(--warm);
  cursor: pointer;
}
.pc-range::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red-bright);
  border: 1px solid var(--warm);
  cursor: pointer;
}
.player-shell.is-theater {
  border-color: var(--red);
  box-shadow: 0 0 0 1px rgba(165, 42, 52, 0.35), 0 12px 34px rgba(0, 0, 0, 0.6);
}
.player-shell.is-lights-off {
  background: #000;
  box-shadow: 0 0 0 1px rgba(165, 42, 52, 0.55);
}
.player-shell.is-lights-off .movie-player {
  filter: brightness(1.12) contrast(1.05);
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.status-current, .status-total, .status-rating {
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-panel-2);
  color: var(--ink-dim);
  white-space: nowrap;
}
.status-current {
  color: var(--warm);
  border-color: var(--red);
  background: #1e1417;
}
.status-rating {
  color: var(--red-bright);
  border-color: rgba(165, 42, 52, 0.5);
  background: rgba(125, 31, 39, 0.16);
  font-weight: 700;
}
.details-block {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2px 16px;
}
.details-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 2px 0;
  border-bottom: 1px dotted rgba(74, 93, 112, 0.28);
  min-width: 0;
}
.details-row dt {
  flex: 0 0 auto;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}
.details-row dd {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.cast-block {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.cast-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.cast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 0 0 auto;
  width: 62px;
  text-align: center;
}
.cast-avatar {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, #3c4855 0%, #232c36 58%, #161d25 100%);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 2px rgba(10, 12, 15, 0.6), 0 0 0 1px rgba(125, 31, 39, 0.28);
}
.cast-name {
  font-size: 11px;
  color: var(--warm);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.cast-role {
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.synopsis-block {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.synopsis-paragraph {
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--ink-dim);
  text-indent: 2em;
  margin-bottom: 7px;
}
.synopsis-paragraph:last-child {
  margin-bottom: 0;
}
.seo-description {
  font-size: 12px;
  line-height: 1.65;
  color: var(--ink-faint);
  border-left: 2px solid var(--line);
  padding-left: 9px;
}
.timeline-section {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.timeline-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 8px 20px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.timeline-node {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "timecode label"
    "timecode label";
  align-items: baseline;
  column-gap: 8px;
  padding: 3px 0;
}
.timeline-dot {
  position: absolute;
  left: -16px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 2px var(--bg-panel), 0 0 6px rgba(165, 42, 52, 0.6);
}
.timeline-timecode {
  grid-area: timecode;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--red-bright);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  border: 1px solid rgba(165, 42, 52, 0.35);
  background: rgba(125, 31, 39, 0.14);
  padding: 1px 5px;
  border-radius: var(--radius);
}
.timeline-label {
  grid-area: label;
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}
.episodes-section {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.episode-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  padding: 7px 9px;
  background: var(--bg-panel-2);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--red);
  border-radius: var(--radius);
  transition: background 0.15s, border-color 0.15s;
}
.episode-card:hover {
  background: #1d242e;
  border-left-color: var(--red-bright);
}
.episode-number {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--red);
  padding: 2px 6px;
  border-radius: var(--radius);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.episode-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.episode-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--warm);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.episode-summary {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ink-dim);
  overflow-wrap: anywhere;
}
.episode-duration {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
}
.comments-section {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 6px;
  align-items: start;
}
.comment-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 7px 10px 8px 12px;
  border-left: 2px solid var(--blue-cold);
  background: linear-gradient(90deg, rgba(74, 93, 112, 0.1), rgba(74, 93, 112, 0.02));
  border-radius: 0 var(--radius) var(--radius) 0;
}
.comment-card:nth-child(3n/**/+2) {
  border-left-color: var(--red);
  background: linear-gradient(90deg, rgba(125, 31, 39, 0.13), rgba(125, 31, 39, 0.02));
}
.comment-nickname {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--warm);
}
.comment-text {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--ink-dim);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}
.rec-region {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.rec-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--warm);
  margin-bottom: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.rec-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 34px;
  height: 2px;
  background: var(--red-bright);
}
.rec-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.rec-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
a.rec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ink);
  text-decoration: none;
  padding: 5px;
  background: var(--bg-panel-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color 0.15s, background 0.15s;
}
a.rec-item:hover {
  border-color: var(--red);
  background: #1d242e;
}
[data-runtime="recommendation"] img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.78) brightness(0.9);
}
.rec-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--warm);
  letter-spacing: 0.02em;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.rec-blurb {
  font-size: 11px;
  line-height: 1.45;
  color: var(--ink-faint);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: #0b0e12;
  margin-top: 4px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--warm);
  border-bottom-color: var(--red-bright);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.friend-links-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  white-space: nowrap;
}
a.runtime-friend-link {
  color: var(--ink-faint);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: var(--red-bright);
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 10.5px;
  line-height: 1.6;
  color: #4f5865;
  letter-spacing: 0.02em;
  border-top: 1px solid var(--line-soft);
  padding-top: 8px;
}
a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible {
  outline: 1px solid var(--red-bright);
  outline-offset: 1px;
}
@media (max-width: 980px) {.overview-hero {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-media {
    max-width: 320px;
  }
.rec-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 720px) {.page-main {
    padding: 10px 10px 18px;
    gap: 14px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-columns {
    grid-template-columns: minmax(0, 1fr);
  }
.movie-title {
    font-size: 17px;
  }
.header-inner {
    padding: 7px 10px;
    gap: 8px;
  }
.category-nav {
    flex-basis: 100%;
  }}
@media (max-width: 520px) {.hero-media {
    max-width: none;
  }
.timeline-list {
    grid-template-columns: minmax(0, 1fr);
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-item {
    width: 56px;
  }
.cast-avatar {
    width: 44px;
    height: 44px;
  }
.pc-btn {
    padding: 3px 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}
