*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
:root {
  --ink: #07090c;
  --ink-2: #0d1218;
  --ink-3: #131b24;
  --rust: #8c2318;
  --rust-hot: #c8341f;
  --rust-deep: #5c150e;
  --blood: #a11d12;
  --lamp: #eaf4f6;
  --lamp-dim: #a9bec2;
  --text: #d8e2e4;
  --text-dim: #7d8f93;
  --line: #223038;
  --gap: 10px;
  --gap-lg: 16px;
  --font: "Helvetica Neue", "Arial Narrow", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}
html {
  background: var(--ink);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--text);
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(140, 35, 24, 0.28), transparent 60%),
    linear-gradient(180deg, #05070a 0%, #07090c 40%, #0a0e13 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--lamp-dim);
  text-decoration: none;
}
h1, h2, h3, p, dl, dd, dt, figure, ul, ol {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
button, input {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.96), rgba(5, 7, 10, 0.82));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--gap-lg);
  flex-wrap: wrap;
  padding: 8px 14px;
  max-width: 1400px;
  margin: 0 auto;
}
a[data-contract="site-name"] {
  color: var(--lamp);
  text-decoration: none;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding-right: 10px;
  border-right: 3px solid var(--rust-hot);
  text-shadow: 0 0 14px rgba(200, 52, 31, 0.5);
  white-space: nowrap;
}
.category-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  color: var(--lamp-dim);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(19, 27, 36, 0.7);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
a.runtime-category:hover {
  color: var(--lamp);
  border-color: var(--rust-hot);
  background: rgba(140, 35, 24, 0.35);
}
.page-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--gap-lg) 14px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section-heading, .block-heading, .recommend-heading {
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--lamp);
  text-transform: uppercase;
}
.section-heading {
  font-size: 17px;
  padding-left: 10px;
  border-left: 4px solid var(--rust-hot);
  margin-bottom: var(--gap);
  line-height: 1.2;
}
.block-heading {
  font-size: 13px;
  color: var(--rust-hot);
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}
.hero-shell {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(480px, 1fr);
  gap: var(--gap-lg);
  align-items: start;
  background:
    linear-gradient(160deg, rgba(19, 27, 36, 0.92), rgba(7, 9, 12, 0.96)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 3px);
  border: 1px solid var(--line);
  border-top: 2px solid var(--rust);
  padding: 14px;
}
.hero-poster-wrap {
  position: relative;
  width: 100%;
  border: 1px solid #2c3a42;
  overflow: hidden;
  background: #000;
}
.hero-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(1.25) contrast(1.12) brightness(0.82) hue-rotate(-8deg);
}
.hero-poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 50% at 50% 78%, rgba(161, 29, 18, 0.55), transparent 70%),
    linear-gradient(180deg, rgba(7, 9, 12, 0.1) 40%, rgba(7, 9, 12, 0.85));
  pointer-events: none;
}
.hero-countdown {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 6px 10px 8px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  background: linear-gradient(180deg, transparent, rgba(7, 9, 12, 0.9) 45%);
}
.countdown-number {
  font-size: clamp(56px, 9vw, 92px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.06em;
  color: var(--lamp);
  text-shadow:
    0 0 8px rgba(234, 244, 246, 0.55),
    0 0 30px rgba(200, 52, 31, 0.75),
    0 3px 0 rgba(92, 21, 14, 0.9);
}
.countdown-note {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--rust-hot);
  padding-bottom: 6px;
  white-space: nowrap;
}
.hero-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.movie-title {
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--lamp);
  text-shadow: 0 0 26px rgba(140, 35, 24, 0.7);
}
.movie-tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--rust-hot);
  letter-spacing: 0.02em;
  margin-top: -6px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #000;
  border: 1px solid #2c3a42;
  box-shadow: 0 0 0 1px rgba(140, 35, 24, 0.35), 0 12px 32px rgba(0, 0, 0, 0.6);
}
.player-shell video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  background: linear-gradient(180deg, #0f161d, #090d12);
  border-top: 1px solid var(--line);
}
.player-controls button {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--lamp-dim);
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(19, 27, 36, 0.8);
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.player-controls button:hover, .player-controls button:focus-visible {
  color: var(--lamp);
  border-color: var(--rust-hot);
  background: rgba(140, 35, 24, 0.4);
  outline: none;
}
.player-controls input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--rust-hot), #2b3941);
  cursor: pointer;
}
.player-controls input[data-player-action="progress"] {
  flex: 1 1 140px;
  min-width: 90px;
}
.player-controls input[data-player-action="volume"] {
  flex: 0 1 80px;
  min-width: 56px;
}
.player-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lamp);
  box-shadow: 0 0 8px rgba(234, 244, 246, 0.9);
}
.player-controls input[type="range"]::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: var(--lamp);
  box-shadow: 0 0 8px rgba(234, 244, 246, 0.9);
}
body.theater-mode .hero-shell {
  grid-template-columns: minmax(0, 1fr);
}
body.theater-mode .hero-poster-wrap {
  max-width: 340px;
}
body.lights-off .page-main, body.lights-off .site-header, body.lights-off .site-footer {
  opacity: 0.32;
}
body.lights-off .player-shell {
  opacity: 1;
  outline: 1px solid var(--rust-hot);
}
body.player-playing .player-shell {
  box-shadow: 0 0 0 1px var(--rust-hot), 0 0 30px rgba(200, 52, 31, 0.45);
}
.synopsis-block {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.synopsis-para {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.62;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.synopsis-para::first-letter {
  color: var(--rust-hot);
  font-weight: 700;
}
.cast-strip {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: 8px;
  align-items: start;
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  min-width: 0;
}
.cast-figure {
  position: relative;
  width: 100%;
  max-width: 78px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.cast-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rust);
  filter: saturate(1.1) contrast(1.08) brightness(0.9);
  box-shadow: 0 0 12px rgba(140, 35, 24, 0.55);
}
.cast-figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%, rgba(234, 244, 246, 0.11) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
  pointer-events: none;
}
.cast-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--lamp);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cast-role {
  font-size: 10px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.2;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.status-chip {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--lamp-dim);
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(19, 27, 36, 0.75);
  white-space: nowrap;
}
.status-chip-current {
  color: var(--lamp);
  border-color: var(--rust-hot);
  background: rgba(140, 35, 24, 0.45);
  box-shadow: 0 0 12px rgba(200, 52, 31, 0.4);
}
.details-block {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 4px 12px;
  align-items: start;
}
.detail-item {
  display: flex;
  gap: 6px;
  font-size: 12px;
  line-height: 1.4;
  border-bottom: 1px dotted #1c272e;
  padding: 2px 0;
  min-width: 0;
}
.detail-item dt {
  color: var(--text-dim);
  font-weight: 300;
  flex: 0 0 auto;
}
.detail-item dd {
  color: var(--text);
  font-weight: 700;
  margin: 0;
}
.timeline-section {
  border-top: 2px solid var(--rust-deep);
  padding-top: 14px;
}
.timeline-list {
  position: relative;
  margin-left: 6px;
  padding-left: 22px;
  border-left: 2px solid transparent;
  background:
    linear-gradient(180deg, var(--rust-hot), var(--rust) 55%, rgba(140, 35, 24, 0.15)) left top / 2px 100% no-repeat;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 2px 14px;
  align-items: start;
  box-shadow: -1px 0 12px rgba(200, 52, 31, 0.35);
}
.timeline-node {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 7px;
  padding: 5px 0;
  min-width: 0;
}
.node-mark {
  position: absolute;
  left: -28px;
  width: 10px;
  height: 10px;
  background: var(--lamp-dim);
  clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
  box-shadow: 0 0 8px rgba(234, 244, 246, 0.6);
}
.node-timecode {
  font-size: 11px;
  font-weight: 900;
  color: var(--lamp-dim);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  grid-column: 1;
}
.node-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--text);
  grid-column: 2 / -1;
  min-width: 0;
}
.timeline-node-current .node-mark {
  background: var(--rust-hot);
  clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
  box-shadow: 0 0 14px rgba(200, 52, 31, 0.95);
  transform: scale(1.25);
}
.timeline-node-current .node-timecode {
  color: var(--rust-hot);
}
.timeline-node-current .node-label {
  color: var(--lamp);
  font-weight: 700;
}
.episodes-section {
  border-top: 2px solid var(--rust-deep);
  padding-top: 14px;
}
.episode-band {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 1fr);
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.episode-band::-webkit-scrollbar {
  height: 6px;
}
.episode-band::-webkit-scrollbar-track {
  background: #0d1218;
}
.episode-band::-webkit-scrollbar-thumb {
  background: var(--rust);
  border-radius: 3px;
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 10px 12px;
  min-height: 170px;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.022) 0 2px, transparent 2px 5px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.018) 0 2px, transparent 2px 5px),
    linear-gradient(180deg, #101821, #0a0e13);
  border: 1px solid var(--line);
  border-top: 2px solid #2c3a42;
  scroll-snap-align: start;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
}
.episode-card:hover {
  border-color: var(--rust);
  transform: translateY(-2px);
}
.episode-card-current {
  border-color: var(--rust-hot);
  border-top-color: var(--rust-hot);
  box-shadow: 0 0 0 1px rgba(200, 52, 31, 0.5), 0 0 22px rgba(140, 35, 24, 0.5) inset;
}
.water-level {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8%;
  background: linear-gradient(180deg, rgba(161, 29, 18, 0.85), rgba(92, 21, 14, 0.95));
  box-shadow: 0 -2px 10px rgba(200, 52, 31, 0.6);
  pointer-events: none;
}
.water-level[data-level="1"] { height: 14%; }
.water-level[data-level="2"] { height: 28%; }
.water-level[data-level="3"] { height: 42%; }
.water-level[data-level="4"] { height: 56%; }
.water-level[data-level="5"] { height: 70%; }
.water-level[data-level="6"] { height: 84%; }
.episode-card > *:not(.water-level) {
  position: relative;
  z-index: 1;
}
.episode-number {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--rust-hot);
  text-transform: uppercase;
}
.episode-title {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--lamp);
  line-height: 1.15;
}
.episode-summary {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text);
  flex: 1 1 auto;
}
.episode-duration {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  border-top: 1px solid var(--line);
  padding-top: 5px;
}
.comments-section {
  border-top: 2px solid var(--rust-deep);
  padding-top: 14px;
}
.comment-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.comment-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.comment-column-offset {
  margin-top: 22px;
}
.comment-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 9px 11px;
  background: rgba(19, 27, 36, 0.55);
  border: 1px solid var(--line);
  border-left: 2px solid var(--rust);
  border-radius: 2px;
  backdrop-filter: blur(2px);
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.comment-card:hover {
  background: rgba(140, 35, 24, 0.3);
  border-left-color: var(--rust-hot);
  transform: translateY(-2px);
}
.comment-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
}
.comment-nickname {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--rust-hot);
  align-self: flex-end;
}
.comment-nickname::before {
  content: "— ";
  color: var(--text-dim);
}
.recommend-region {
  border-top: 2px solid var(--rust-deep);
  padding-top: 14px;
}
.recommend-heading {
  font-size: 16px;
  padding-left: 10px;
  border-left: 4px solid var(--rust-hot);
  margin-bottom: var(--gap);
  line-height: 1.2;
}
.recommend-grid {
  display: grid;
  gap: 8px;
  align-items: start;
}
.recommend-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.recommend-grid-mid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(0, 0.85fr);
}
.recommend-grid-narrow {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.8fr);
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--text);
  text-decoration: none;
  padding: 7px;
  background: linear-gradient(180deg, #101821, #0a0e13);
  border: 1px solid var(--line);
  border-radius: 2px;
  min-width: 0;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
a.recommend-card:hover {
  border-color: var(--rust-hot);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
  filter: saturate(1.15) contrast(1.08) brightness(0.85);
  background: #000;
}
.recommend-cover {
  border: 1px solid #1c272e;
}
.recommend-name {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--lamp);
  line-height: 1.25;
}
.recommend-blurb {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-dim);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 26px;
  border-top: 2px solid var(--rust-deep);
  background: linear-gradient(180deg, rgba(7, 9, 12, 0.6), #05070a);
  padding: 16px 14px 26px;
}
.site-footer > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.footer-disclaimer {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 760px;
  letter-spacing: 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
a[data-contract="footer-home"] {
  color: var(--lamp);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
a[data-contract="footer-home"]:hover {
  color: var(--rust-hot);
  text-decoration: underline;
}
a[data-contract="footer-sitemap"] {
  color: var(--lamp-dim);
  text-decoration: none;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
}
a[data-contract="footer-sitemap"]:hover {
  color: var(--lamp);
  text-decoration: underline;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.friend-links-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--rust-hot);
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 8px;
  border-right: 2px solid var(--rust-deep);
}
a.runtime-friend-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 2px 6px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: color 0.15s, border-color 0.15s;
}
a.runtime-friend-link:hover {
  color: var(--lamp);
  border-color: var(--line);
}
@media (max-width: 1024px) {.hero-shell {
    grid-template-columns: minmax(200px, 260px) minmax(480px, 1fr);
  }
.recommend-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-grid-mid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-grid-narrow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.hero-shell {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-poster-wrap {
    max-width: 300px;
  }
.timeline-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
.episode-band {
    grid-auto-columns: minmax(190px, 1fr);
  }}
@media (max-width: 620px) {body {
    font-size: 13px;
  }
.page-main {
    padding: 12px 10px 22px;
    gap: 18px;
  }
.header-inner {
    padding: 7px 10px;
    gap: 8px;
  }
a[data-contract="site-name"] {
    font-size: 16px;
    flex: 0 0 auto;
  }
.hero-shell {
    padding: 10px;
    gap: 10px;
  }
.hero-poster-wrap {
    max-width: 240px;
  }
.countdown-number {
    font-size: 54px;
  }
.movie-title {
    font-size: 26px;
  }
.player-controls button {
    font-size: 10px;
    padding: 4px 6px;
  }
.player-controls input[data-player-action="progress"] {
    flex: 1 1 100%;
  }
.player-controls input[data-player-action="volume"] {
    flex: 1 1 80px;
  }
.timeline-list {
    grid-template-columns: minmax(0, 1fr);
    margin-left: 4px;
    padding-left: 18px;
  }
.node-mark {
    left: -24px;
  }
.episode-band {
    grid-auto-columns: minmax(170px, 78vw);
  }
.comment-columns {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-column-offset {
    margin-top: 0;
  }
.recommend-grid-wide, .recommend-grid-mid, .recommend-grid-narrow {
    grid-template-columns: minmax(0, 1fr);
  }
.details-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }
.cast-list {
    grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
  }
.site-footer {
    padding: 14px 10px 22px;
  }}
@media (max-width: 420px) {.hero-poster-wrap {
    max-width: 100%;
  }
.episode-band {
    grid-auto-columns: minmax(160px, 84vw);
  }
.countdown-number {
    font-size: 46px;
  }}

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}
