:root {
  --ink: #0b0f14;
  --ink-2: #10161d;
  --ink-3: #151d26;
  --panel: #131a22;
  --panel-2: #18212b;
  --line: #263340;
  --line-soft: #1d2833;
  --cold: #cfd8e3;
  --cold-dim: #8b99a8;
  --cold-faint: #5c6a78;
  --warm: #f4ede2;
  --warm-hot: #fff6e8;
  --skin: #c9a99a;
  --alert: #e8562f;
  --alert-soft: #ff6b3d;
  --glow: rgba(255, 246, 232, 0.85);
  --glow-soft: rgba(255, 246, 232, 0.35);
  --gap: 10px;
  --gap-tight: 6px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body, h1, h2, h3, p, dl, dd, dt, ol, ul, li {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input {
  font: inherit;
  color: inherit;
}
body {
  background:
    radial-gradient(1200px 700px at 78% -6%, rgba(255, 246, 232, 0.10), transparent 58%),
    radial-gradient(900px 520px at 8% 12%, rgba(255, 246, 232, 0.045), transparent 60%),
    linear-gradient(180deg, #0a0e13 0%, #0b0f14 40%, #090d12 100%);
  color: var(--cold);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
.page-main {
  display: block;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(10px, 2.2vw, 26px) 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(9, 13, 18, 0.96), rgba(9, 13, 18, 0.82));
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 8px clamp(10px, 2.2vw, 26px);
  min-height: 46px;
}
.site-brand {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--warm);
  padding-right: 14px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(255, 246, 232, 0.28);
}
a[data-contract="site-name"] {
  color: var(--warm);
  text-decoration: none;
}
a[data-contract="site-name"]:hover {
  color: var(--warm-hot);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.categories-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  min-width: 0;
  flex: 1 1 auto;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--cold-dim);
  padding: 3px 8px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 246, 232, 0.02);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--warm-hot);
  border-color: rgba(255, 246, 232, 0.45);
  background: rgba(255, 246, 232, 0.07);
  text-decoration: none;
}
.hero-panel {
  position: relative;
  margin-top: 14px;
  padding-bottom: 44px;
}
.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  background: #06090c;
  border: 1px solid var(--line-soft);
}
.hero-poster {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 30%;
  aspect-ratio: 2 / 3;
  filter: saturate(0.82) contrast(1.06) brightness(0.9);
}
.hero-scrim {
  grid-area: 1 / 1;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 9, 12, 0.95) 0%, rgba(6, 9, 12, 0.78) 34%, rgba(6, 9, 12, 0.18) 62%, rgba(6, 9, 12, 0.55) 100%),
    linear-gradient(0deg, rgba(6, 9, 12, 0.96) 0%, rgba(6, 9, 12, 0.35) 32%, rgba(6, 9, 12, 0.05) 58%, rgba(6, 9, 12, 0.7) 100%);
}
.hero-caption {
  grid-area: 1 / 1;
  z-index: 2;
  align-self: end;
  justify-self: start;
  max-width: 62%;
  padding: clamp(14px, 2.4vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-tagline {
  font-size: clamp(12px, 1.05vw, 14px);
  line-height: 1.55;
  letter-spacing: 0.16em;
  color: var(--warm);
  max-width: 34ch;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.85);
}
.hero-tagline::before {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin-bottom: 10px;
  background: var(--glow);
  box-shadow: 0 0 10px var(--glow-soft);
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 3px 22px;
}
.meta-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.meta-row dt {
  color: var(--cold-faint);
  flex: 0 0 auto;
}
.meta-row dd {
  color: var(--cold);
  font-weight: 600;
}
.hero-title {
  grid-area: 1 / 1;
  z-index: 2;
  align-self: end;
  justify-self: end;
  padding: clamp(14px, 2.4vw, 34px);
  font-size: clamp(30px, 6.4vw, 96px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--warm-hot);
  text-shadow: 0 0 26px rgba(255, 246, 232, 0.42), 0 4px 26px rgba(0, 0, 0, 0.9);
  writing-mode: vertical-rl;
  text-orientation: upright;
  pointer-events: none;
}
.overview-blocks {
  position: relative;
  z-index: 3;
  margin-top: -26px;
  margin-left: clamp(0px, 1.6vw, 22px);
  margin-right: clamp(0px, 1.6vw, 22px);
  padding: clamp(14px, 2vw, 24px);
  background: linear-gradient(180deg, rgba(24, 33, 43, 0.94), rgba(15, 21, 28, 0.96));
  border: 1px solid var(--line);
  border-top: 1px solid rgba(255, 246, 232, 0.22);
  box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 246, 232, 0.06);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.9fr) minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(12px, 1.8vw, 26px);
  align-items: start;
}
.block-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: var(--cold-faint);
  padding-bottom: 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
}
.episode-status .status-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.status-number {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--warm-hot);
  text-shadow: 0 0 22px rgba(255, 246, 232, 0.35);
}
.status-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--cold-dim);
}
.status-sep {
  color: var(--line);
  font-weight: 400;
}
.status-current {
  display: block;
  width: 100%;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--alert-soft);
  border-left: 2px solid var(--alert);
  padding-left: 8px;
}
.synopsis-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--cold-dim);
  max-height: 260px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.synopsis-body p:first-child {
  color: var(--cold);
}
.synopsis-body::-webkit-scrollbar {
  width: 5px;
}
.synopsis-body::-webkit-scrollbar-thumb {
  background: var(--line);
}
.cast-roster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 8px;
}
.cast-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 4px;
  border-bottom: 1px solid var(--line-soft);
}
.cast-portrait {
  flex: 0 0 auto;
  width: 20px;
  height: 26px;
  background: linear-gradient(160deg, var(--skin) 0%, #6d5a52 55%, #2a333d 100%);
  border: 1px solid var(--line);
  filter: saturate(0.7);
}
.cast-name {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--cold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.details-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 3px 0;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 11.5px;
}
.detail-row dt {
  color: var(--cold-faint);
  letter-spacing: 0.1em;
  flex: 0 0 auto;
}
.detail-row dd {
  color: var(--cold);
  text-align: right;
  min-width: 0;
}
.detail-score {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: var(--warm-hot);
  letter-spacing: 0;
}
.player-shell {
  position: relative;
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background: #05080b;
  border: 1px solid var(--line);
}
.player-frame {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #000;
  border-bottom: 1px solid var(--line);
}
.player-frame video {
  display: block;
  width: 100%;
  max-width: 100%;
  background: #000;
}
.player-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border-top: 1px solid var(--line-soft);
}
.player-btn {
  flex: 0 0 auto;
  cursor: pointer;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--cold);
  background: rgba(255, 246, 232, 0.03);
  border: 1px solid var(--line);
  padding: 5px 10px;
  transition: color 0.14s ease, border-color 0.14s ease, background 0.14s ease, box-shadow 0.14s ease;
}
.player-btn:hover, .player-btn:focus-visible {
  color: var(--warm-hot);
  border-color: rgba(255, 246, 232, 0.55);
  background: rgba(255, 246, 232, 0.09);
  box-shadow: 0 0 12px rgba(255, 246, 232, 0.14);
  outline: none;
}
.player-btn:active {
  background: rgba(255, 246, 232, 0.16);
}
.player-progress {
  flex: 1 1 220px;
  min-width: 120px;
  height: 4px;
  margin: 0 4px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(90deg, var(--glow-soft), var(--line));
  border: none;
  outline: none;
}
.player-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 14px;
  background: var(--warm-hot);
  border: none;
  box-shadow: 0 0 10px var(--glow-soft);
  cursor: pointer;
}
.player-progress::-moz-range-thumb {
  width: 10px;
  height: 14px;
  border: none;
  background: var(--warm-hot);
  box-shadow: 0 0 10px var(--glow-soft);
  cursor: pointer;
}
.player-volume {
  flex: 0 1 96px;
  min-width: 64px;
  height: 4px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: var(--line);
  border: none;
  outline: none;
}
.player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 8px;
  height: 12px;
  background: var(--cold-dim);
  border: none;
  cursor: pointer;
}
.player-volume::-moz-range-thumb {
  width: 8px;
  height: 12px;
  border: none;
  background: var(--cold-dim);
  cursor: pointer;
}
.player-shell.is-playing .player-btn[data-player-action="play"] {
  color: var(--warm-hot);
  border-color: rgba(255, 246, 232, 0.5);
  box-shadow: 0 0 12px rgba(255, 246, 232, 0.16);
}
.player-shell.is-muted .player-btn[data-player-action="mute"] {
  color: var(--alert-soft);
  border-color: rgba(232, 86, 47, 0.6);
}
.player-shell.is-theater {
  box-shadow: 0 0 0 1px rgba(255, 246, 232, 0.14), 0 0 60px rgba(255, 246, 232, 0.06);
}
.player-shell.is-theater .player-frame {
  background: #000;
}
.timeline-strip {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}
.strip-title {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--cold-faint);
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1;
  padding: 2px 0;
  margin-right: 10px;
  vertical-align: top;
}
.timeline-track {
  display: inline-flex;
  vertical-align: top;
  gap: 0;
  width: calc(100% - 26px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  scroll-snap-type: x proximity;
}
.timeline-track::-webkit-scrollbar {
  height: 5px;
}
.timeline-track::-webkit-scrollbar-thumb {
  background: var(--line);
}
.timeline-node {
  position: relative;
  flex: 0 0 auto;
  width: 200px;
  padding: 0 12px 0 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.node-code {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--cold);
}
.timeline-node:nth-child(3n + 2) .node-code, .timeline-node:nth-child(4n) .node-code {
  color: var(--alert-soft);
}
.node-line {
  display: block;
  height: 2px;
  width: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    var(--glow) 0 10px,
    transparent 10px 18px
  );
  opacity: 0.5;
  box-shadow: 0 0 8px rgba(255, 246, 232, 0.18);
}
.timeline-node:nth-child(3n + 2) .node-line, .timeline-node:nth-child(4n) .node-line {
  background-image: repeating-linear-gradient(
    90deg,
    var(--alert) 0 8px,
    transparent 8px 14px
  );
  opacity: 0.9;
  box-shadow: 0 0 10px rgba(232, 86, 47, 0.4);
}
.node-label {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--cold-dim);
  letter-spacing: 0.02em;
}
.timeline-node:nth-child(3n + 2) .node-label, .timeline-node:nth-child(4n) .node-label {
  color: var(--cold);
}
.episodes-panel {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.panel-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.38em;
  color: var(--cold-faint);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.panel-title::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--line);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.episode-card {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 9px;
  row-gap: 2px;
  padding: 7px 10px 7px 8px;
  background: linear-gradient(180deg, rgba(24, 33, 43, 0.72), rgba(16, 22, 29, 0.86));
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--line);
  align-items: start;
  transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}
.episode-card:hover {
  background: linear-gradient(180deg, rgba(38, 49, 62, 0.92), rgba(22, 30, 39, 0.96));
  border-color: rgba(255, 246, 232, 0.34);
  border-left-color: var(--warm-hot);
  box-shadow: 0 0 18px rgba(255, 246, 232, 0.1), inset 0 0 0 1px rgba(255, 246, 232, 0.05);
}
.episode-number {
  grid-row: 1 / span 3;
  grid-column: 1;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cold-faint);
  padding-top: 1px;
  transition: color 0.16s ease, text-shadow 0.16s ease;
}
.episode-card:hover .episode-number {
  color: var(--warm-hot);
  text-shadow: 0 0 14px rgba(255, 246, 232, 0.4);
}
.episode-name {
  grid-column: 2;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--cold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.episode-card:hover .episode-name {
  color: var(--warm-hot);
}
.episode-summary {
  grid-column: 2;
  font-size: 11px;
  line-height: 1.5;
  color: var(--cold-faint);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-duration {
  grid-column: 2;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--cold-faint);
  border-top: 1px solid var(--line-soft);
  padding-top: 2px;
  margin-top: 1px;
}
.recommend-band {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.band-title {
  flex: 0 0 auto;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--cold-faint);
  line-height: 1;
  padding: 2px 0;
  border-right: 1px solid var(--line-soft);
  padding-right: 8px;
  align-self: stretch;
  max-height: 100%;
}
.band-row {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
}
a.recommend-item {
  flex: 1 1 150px;
  min-width: 132px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  background: linear-gradient(180deg, rgba(23, 31, 40, 0.7), rgba(14, 19, 25, 0.85));
  border: 1px solid var(--line-soft);
  color: var(--cold-dim);
  text-decoration: none;
  transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}
a.recommend-item:hover, a.recommend-item:focus-visible {
  border-color: rgba(255, 246, 232, 0.4);
  background: linear-gradient(180deg, rgba(38, 49, 62, 0.9), rgba(20, 27, 35, 0.95));
  box-shadow: 0 0 16px rgba(255, 246, 232, 0.1);
  color: var(--cold);
  text-decoration: none;
  outline: none;
}
[data-runtime="recommendation"] img, .recommend-pic {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  display: block;
  background: #0a0e13;
  border: 1px solid var(--line-soft);
  filter: saturate(0.8) brightness(0.92);
  transition: filter 0.16s ease;
}
a.recommend-item:hover .recommend-pic {
  filter: saturate(1) brightness(1.05);
}
.recommend-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recommend-blurb {
  font-size: 10.5px;
  line-height: 1.45;
  color: var(--cold-faint);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comments-panel {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  padding-bottom: 26px;
}
.comment-count {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--alert-soft);
  text-shadow: 0 0 12px rgba(232, 86, 47, 0.4);
}
.comment-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 14px;
  padding: 4px 2px;
}
.comment-note {
  position: relative;
  padding: 10px 12px 12px;
  background: linear-gradient(160deg, rgba(31, 41, 52, 0.94), rgba(17, 23, 30, 0.96));
  border: 1px solid var(--line);
  border-top: 1px solid rgba(255, 246, 232, 0.16);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  transform: rotate(-2deg);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  align-self: start;
}
.comment-note:nth-child(even) {
  transform: rotate(2deg);
}
.comment-note:nth-child(3n) {
  transform: rotate(-1deg) translateX(2px);
}
.comment-note::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 12px;
  width: 26px;
  height: 2px;
  background: var(--glow);
  opacity: 0.5;
  box-shadow: 0 0 8px var(--glow-soft);
}
.comment-note:hover {
  transform: rotate(0deg) translateY(-2px);
  border-color: rgba(255, 246, 232, 0.36);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.6), 0 0 18px rgba(255, 246, 232, 0.08);
}
.note-nick {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--skin);
  margin-bottom: 6px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-soft);
}
.note-text {
  font-size: 11.5px;
  line-height: 1.68;
  color: var(--cold-dim);
}
.site-footer {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.9), #070a0e);
  padding: 16px clamp(10px, 2.2vw, 26px) 30px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
  max-width: 1360px;
  margin: 0 auto;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--cold-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--warm-hot);
  border-bottom-color: rgba(255, 246, 232, 0.5);
  text-decoration: none;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 14px;
  max-width: 1360px;
  margin: 12px auto 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.friend-label {
  font-size: 10.5px;
  letter-spacing: 0.3em;
  color: var(--cold-faint);
  padding-right: 10px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--cold-faint);
  text-decoration: none;
  transition: color 0.15s ease;
}
a.runtime-friend-link:hover {
  color: var(--cold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-disclaimer {
  max-width: 1360px;
  margin: 12px auto 0;
  font-size: 10.5px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #4c5865;
}
body.lights-on {
  background:
    radial-gradient(1200px 700px at 78% -6%, rgba(255, 246, 232, 0.16), transparent 58%),
    radial-gradient(900px 520px at 8% 12%, rgba(255, 246, 232, 0.08), transparent 60%),
    linear-gradient(180deg, #0d1218 0%, #0e131a 40%, #0b1015 100%);
}
body.lights-on .hero-poster {
  filter: saturate(0.9) contrast(1.04) brightness(1);
}
body.lights-on .hero-scrim {
  background:
    linear-gradient(90deg, rgba(6, 9, 12, 0.9) 0%, rgba(6, 9, 12, 0.66) 34%, rgba(6, 9, 12, 0.1) 62%, rgba(6, 9, 12, 0.5) 100%),
    linear-gradient(0deg, rgba(6, 9, 12, 0.92) 0%, rgba(6, 9, 12, 0.28) 32%, rgba(6, 9, 12, 0.04) 58%, rgba(6, 9, 12, 0.6) 100%);
}
@media (max-width: 1100px) {.overview-blocks {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
    grid-template-areas:
      "status synopsis"
      "cast details";
  }
.episode-status { grid-area: status; }
.synopsis { grid-area: synopsis; }
.cast { grid-area: cast; }
.details { grid-area: details; }
.comment-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 820px) {.hero-caption {
    max-width: 82%;
  }
.hero-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: clamp(34px, 9vw, 64px);
    align-self: end;
    justify-self: start;
    padding-bottom: clamp(14px, 3vw, 24px);
  }
.hero-poster {
    aspect-ratio: 3 / 4;
    object-position: 62% 25%;
  }
.overview-blocks {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "status"
      "synopsis"
      "cast"
      "details";
  }
.synopsis-body {
    max-height: 240px;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-band {
    flex-direction: column;
    gap: 8px;
  }
.band-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
    padding: 0 0 6px;
    letter-spacing: 0.3em;
    align-self: stretch;
  }
.strip-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    display: block;
    margin: 0 0 8px;
  }
.timeline-track {
    width: 100%;
    display: flex;
  }}
@media (max-width: 620px) {.header-inner {
    flex-wrap: wrap;
    gap: 8px;
  }
.site-brand {
    border-right: none;
    padding-right: 0;
  }
.categories-bar {
    flex-basis: 100%;
  }
.hero-caption {
    max-width: 100%;
    padding: 14px;
    gap: 10px;
  }
.hero-meta {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }
.meta-row {
    white-space: normal;
  }
.hero-title {
    font-size: clamp(30px, 11vw, 52px);
  }
.overview-blocks {
    margin-left: 0;
    margin-right: 0;
    margin-top: -14px;
  }
.cast-roster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-notes {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
.comment-note, .comment-note:nth-child(even), .comment-note:nth-child(3n) {
    transform: rotate(-1.2deg);
  }
.player-bar {
    gap: 5px;
    padding: 6px 7px;
  }
.player-btn {
    font-size: 11px;
    padding: 5px 8px;
    letter-spacing: 0.08em;
  }
.player-progress {
    flex-basis: 100%;
    order: -1;
    margin: 2px 0 4px;
  }
a.recommend-item {
    flex: 1 1 132px;
    min-width: 118px;
    max-width: none;
  }
.timeline-node {
    width: 168px;
  }}
@media (max-width: 400px) {.status-number {
    font-size: 32px;
  }
.recommend-name {
    font-size: 11.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}
