:root {
  --ink: #0e1a16;
  --ink-2: #14241e;
  --camphor: #3b2c20;
  --camphor-2: #4d3a29;
  --camphor-3: #2a1f16;
  --hai: #b8393f;
  --hai-soft: #d05a5e;
  --tape: #c9ccc4;
  --tape-dim: #8f968c;
  --paper: #ece7db;
  --paper-2: #f4f0e6;
  --line: rgba(201, 204, 196, 0.16);
  --line-2: rgba(201, 204, 196, 0.28);
  --radius: 10px;
  --radius-sm: 6px;
  --gap: 10px;
  --pad: 12px;
  --serif: "Songti SC", "STSong", "SimSun", "Noto Serif CJK SC", serif;
  --kai: "Kaiti SC", "STKaiti", "KaiTi", "Noto Serif CJK SC", serif;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background:
    radial-gradient(120% 80% at 15% 0%, rgba(58, 90, 74, 0.35), transparent 60%),
    linear-gradient(180deg, #0d1a15 0%, #10201a 40%, #0c1713 100%);
  color: var(--tape);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--tape);
  text-decoration: none;
}
h1, h2, h3, p, ol, ul, dl, dd, dt {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
button {
  font: inherit;
  color: inherit;
}
::selection {
  background: var(--hai);
  color: var(--paper-2);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(180deg, rgba(10, 20, 16, 0.96), rgba(10, 20, 16, 0.82));
  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"] {
  font-family: var(--kai);
  font-size: 19px;
  letter-spacing: 0.14em;
  color: #e6d9c8;
  text-decoration: none;
  padding: 2px 10px 2px 12px;
  border-left: 3px solid var(--hai);
  background: linear-gradient(90deg, rgba(184, 57, 63, 0.16), transparent 70%);
  white-space: nowrap;
}
a[data-contract="site-name"]:hover {
  color: var(--hai-soft);
}
.category-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12.5px;
  padding: 3px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--tape-dim);
  text-decoration: none;
  background: rgba(201, 204, 196, 0.04);
  transition: color 0.16s, border-color 0.16s, background 0.16s;
}
a.runtime-category:hover {
  color: var(--paper-2);
  border-color: var(--hai);
  background: rgba(184, 57, 63, 0.18);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-panel {
  position: relative;
  border-radius: var(--radius);
  background:
    radial-gradient(80% 100% at 22% 40%, rgba(60, 96, 78, 0.55), transparent 65%),
    linear-gradient(150deg, #1a2b23 0%, #12201a 45%, #0d1713 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 200px;
  padding: 16px 14px 16px 16px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(150px, 1fr);
  gap: 14px;
  align-items: stretch;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(201, 204, 196, 0.05) 0 1px, transparent 1px 26px),
    radial-gradient(60% 90% at 78% 20%, rgba(184, 57, 63, 0.16), transparent 70%);
  pointer-events: none;
}
.hero-timeline-axis {
  grid-column: 2;
  position: relative;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.hero-timeline-axis::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6%;
  bottom: 6%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-2) 12%, var(--line-2) 88%, transparent);
}
.hero-axis-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-axis-node {
  position: relative;
  padding-left: 12px;
}
.hero-axis-node::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tape-dim);
  box-shadow: 0 0 0 3px rgba(201, 204, 196, 0.08);
}
.hero-axis-node:first-child::before, .hero-axis-node:last-child::before {
  background: var(--hai);
  box-shadow: 0 0 0 3px rgba(184, 57, 63, 0.18);
}
.hero-axis-time {
  font-family: var(--kai);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(201, 204, 196, 0.72);
  white-space: nowrap;
}
.movie-overview {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 14px;
  align-items: start;
}
.overview-poster {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--camphor-3);
  border: 1px solid var(--line);
  align-self: start;
  width: 100%;
  max-width: 340px;
}
.overview-poster-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04) brightness(0.94);
}
.hero-figure-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 12px 10px;
  background: linear-gradient(180deg, transparent, rgba(8, 14, 11, 0.92) 62%);
}
.hero-figure-name {
  font-family: var(--kai);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #e9ddc9;
}
.hero-figure-scene {
  font-size: 11.5px;
  color: rgba(201, 204, 196, 0.7);
  line-height: 1.45;
}
.overview-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.overview-title {
  font-family: var(--kai);
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: #f0e6d4;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.overview-tagline {
  font-family: var(--kai);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--hai-soft);
  margin-top: -4px;
}
.overview-seo {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(201, 204, 196, 0.82);
  text-align: justify;
}
.episode-status {
  border: 1px solid var(--line);
  border-left: 3px solid var(--hai);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  background: rgba(20, 36, 30, 0.7);
}
.episode-status-line {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--tape);
  margin-bottom: 6px;
}
.episode-status-progress {
  height: 5px;
  border-radius: 3px;
  background: rgba(201, 204, 196, 0.12);
  overflow: hidden;
}
.episode-status-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--hai), var(--hai-soft));
}
.episode-status-bar[data-progress="7"] {
  width: 58.3%;
}
.details-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(20, 36, 30, 0.55);
  padding: 8px 10px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 12px;
}
.detail-row {
  display: flex;
  gap: 6px;
  align-items: baseline;
  min-width: 0;
  border-bottom: 1px dotted rgba(201, 204, 196, 0.12);
  padding-bottom: 3px;
}
.detail-key {
  flex: 0 0 auto;
  font-size: 11.5px;
  color: rgba(201, 204, 196, 0.55);
  letter-spacing: 0.06em;
}
.detail-value {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12.5px;
  color: var(--tape);
  text-align: right;
  word-break: break-word;
}
.cast-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(20, 36, 30, 0.45);
  padding: 8px 10px 10px;
}
.cast-heading, .synopsis-heading, .timeline-heading, .episodes-heading, .comments-heading, .rec-heading {
  font-family: var(--kai);
  font-size: 15px;
  letter-spacing: 0.16em;
  color: #e9ddc9;
  padding-left: 9px;
  border-left: 3px solid var(--hai);
  line-height: 1.2;
  margin-bottom: 8px;
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 6px;
}
.cast-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(59, 44, 32, 0.65), rgba(20, 36, 30, 0.85));
  padding: 7px 8px 14px;
  min-width: 0;
  overflow: hidden;
}
.cast-name {
  display: block;
  font-family: var(--kai);
  font-size: 13.5px;
  letter-spacing: 0.08em;
  color: #e6d9c8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cast-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(201, 204, 196, 0.55) 0 1px,
      transparent 1px 3px
    );
  background-size: 100% 100%;
  opacity: 0.5;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
.cast-card:nth-child(1) .cast-wave { height: 7px; }
.cast-card:nth-child(2) .cast-wave { height: 11px; }
.cast-card:nth-child(3) .cast-wave { height: 6px; }
.cast-card:nth-child(4) .cast-wave { height: 9px; }
.cast-card:nth-child(5) .cast-wave { height: 12px; }
.cast-card:nth-child(6) .cast-wave { height: 8px; }
.cast-card:nth-child(7) .cast-wave { height: 10px; }
.synopsis-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(20, 36, 30, 0.4);
  padding: 8px 10px 10px;
}
.synopsis-paragraph {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(201, 204, 196, 0.84);
  text-align: justify;
  text-indent: 2em;
}
.synopsis-paragraph + .synopsis-paragraph {
  margin-top: 6px;
}
.player-shell {
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: #060c09;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  box-shadow: inset 0 0 0 1px rgba(184, 57, 63, 0.12);
}
.player-video {
  display: block;
  width: 100%;
  border-radius: var(--radius-sm);
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.player-btn {
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(201, 204, 196, 0.06);
  color: var(--tape);
  font-size: 12px;
  padding: 3px 11px;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.player-btn:hover {
  color: var(--paper-2);
  border-color: var(--hai);
  background: rgba(184, 57, 63, 0.2);
}
.player-btn.is-playing, .player-btn.is-active {
  color: var(--paper-2);
  border-color: var(--hai);
  background: rgba(184, 57, 63, 0.32);
}
.player-btn.is-muted {
  color: var(--hai-soft);
  border-color: var(--hai);
}
.player-progress, .player-volume {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 3px;
  background: rgba(201, 204, 196, 0.18);
  cursor: pointer;
  border: none;
  outline: none;
}
.player-progress {
  flex: 1 1 160px;
  min-width: 110px;
}
.player-volume {
  flex: 0 1 80px;
  min-width: 60px;
}
.player-progress::-webkit-slider-thumb, .player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hai);
  border: 2px solid #0b1410;
  cursor: pointer;
}
.player-progress::-moz-range-thumb, .player-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 2px solid #0b1410;
  border-radius: 50%;
  background: var(--hai);
  cursor: pointer;
}
.player-note {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: rgba(201, 204, 196, 0.5);
}
.player-shell.is-theater {
  box-shadow: 0 0 0 1px var(--hai), 0 12px 40px rgba(0, 0, 0, 0.7);
}
.player-shell.lights-off {
  background: #000;
}
body.lights-off .page-main > *:not(.movie-overview) {
  opacity: 0.4;
}
.timeline-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(21, 37, 30, 0.75), rgba(13, 24, 19, 0.85));
  padding: 10px;
  min-width: 0;
}
.timeline-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--camphor-2) transparent;
}
.timeline-scroller::-webkit-scrollbar {
  height: 7px;
}
.timeline-scroller::-webkit-scrollbar-track {
  background: rgba(201, 204, 196, 0.06);
  border-radius: 4px;
}
.timeline-scroller::-webkit-scrollbar-thumb {
  background: var(--camphor-2);
  border-radius: 4px;
}
.timeline-track {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 6px 2px 2px;
  min-width: max-content;
}
.timeline-card {
  flex: 0 0 172px;
  width: 172px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--camphor-2);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(59, 44, 32, 0.5), rgba(18, 32, 26, 0.9));
  padding: 8px 9px 10px;
  cursor: pointer;
  transition: border-color 0.16s, transform 0.16s, background 0.16s;
}
.timeline-card:nth-child(odd) {
  margin-bottom: 14px;
}
.timeline-card:nth-child(even) {
  margin-top: 14px;
  flex-basis: 186px;
  width: 186px;
}
.timeline-card:hover, .timeline-card.is-active {
  border-top-color: var(--hai);
  background: linear-gradient(180deg, rgba(88, 44, 40, 0.55), rgba(22, 38, 31, 0.92));
}
.timeline-time {
  display: block;
  font-family: var(--kai);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--hai-soft);
  margin-bottom: 4px;
  white-space: nowrap;
}
.timeline-label {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(201, 204, 196, 0.84);
}
.episodes-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(21, 37, 30, 0.72), rgba(13, 24, 19, 0.86));
  padding: 10px;
}
.episodes-split {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.episode-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  align-content: start;
  padding: 2px;
  width: max-content;
}
.episode-index-item {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--kai);
  font-size: 12.5px;
  color: rgba(201, 204, 196, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(201, 204, 196, 0.04);
  cursor: default;
}
.episode-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 8px;
  align-items: start;
}
.episode-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(20, 36, 30, 0.62);
  padding: 8px 10px 9px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  cursor: pointer;
  transition: border-color 0.16s, background 0.16s;
}
.episode-card:hover, .episode-card.is-active {
  border-color: var(--line-2);
  background: rgba(32, 54, 44, 0.8);
}
.episode-card.is-current {
  border-color: var(--hai);
  background: linear-gradient(180deg, rgba(90, 40, 40, 0.5), rgba(24, 40, 33, 0.9));
}
.episode-number {
  font-family: var(--kai);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--hai-soft);
}
.episode-title {
  font-family: var(--kai);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #eee2cf;
  line-height: 1.3;
}
.episode-summary {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(201, 204, 196, 0.8);
}
.episode-duration {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(201, 204, 196, 0.48);
  margin-top: 2px;
}
.comments-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(21, 37, 30, 0.72), rgba(13, 24, 19, 0.86));
  padding: 10px;
}
.comments-columns {
  column-count: 2;
  column-gap: 10px;
}
.comment-card {
  break-inside: avoid;
  display: flex;
  gap: 9px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(20, 36, 30, 0.6);
  padding: 8px 10px;
  margin-bottom: 10px;
  min-width: 0;
}
.comment-card:nth-child(even) {
  margin-left: 14px;
  background: rgba(28, 46, 38, 0.72);
}
.comment-avatar {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(201, 204, 196, 0.45), transparent 55%),
    linear-gradient(150deg, #4d3a29, #17261f 78%);
  box-shadow: inset 0 0 0 1px rgba(201, 204, 196, 0.16), inset 0 -8px 12px rgba(0, 0, 0, 0.6);
}
.comment-body {
  min-width: 0;
  flex: 1 1 auto;
}
.comment-nickname {
  font-family: var(--kai);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: #e3d6c2;
  margin-bottom: 2px;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.72;
  color: rgba(201, 204, 196, 0.82);
  text-align: justify;
}
.rec-region {
  border-radius: var(--radius);
  padding: 10px 11px 11px;
}
.rec-region-light {
  background: linear-gradient(180deg, var(--paper-2), var(--paper));
  border: 1px solid rgba(59, 44, 32, 0.22);
  color: #2a2119;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
}
.rec-region-light .rec-heading {
  color: #33271c;
  border-left-color: var(--hai);
}
.rec-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 8px;
  align-items: start;
}
a.rec-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  border: 1px solid rgba(59, 44, 32, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.5);
  padding: 6px;
  color: #2a2119;
  text-decoration: none;
  transition: border-color 0.16s, background 0.16s, transform 0.16s;
}
a.rec-item:hover {
  border-color: var(--hai);
  background: #fff;
  transform: translateY(-1px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  background: var(--camphor-3);
  filter: saturate(0.92);
}
.rec-name {
  font-family: var(--kai);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #2e2318;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rec-blurb {
  font-size: 11.5px;
  line-height: 1.55;
  color: #5c5044;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 6px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9, 17, 13, 0.9), #070d0a);
  padding: 16px 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(201, 204, 196, 0.5);
  max-width: 760px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--tape-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--hai-soft);
  border-bottom-color: var(--hai);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  border-top: 1px dotted rgba(201, 204, 196, 0.14);
  padding-top: 10px;
}
.friend-links-label {
  font-family: var(--kai);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(201, 204, 196, 0.4);
}
a.runtime-friend-link {
  font-size: 12px;
  color: rgba(201, 204, 196, 0.6);
  text-decoration: none;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: var(--hai-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 900px) {.movie-overview {
    grid-template-columns: minmax(0, 1fr);
  }
.overview-poster {
    max-width: 260px;
  }
.comments-columns {
    column-count: 2;
  }}
@media (max-width: 720px) {body {
    font-size: 13.5px;
  }
.hero-panel {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
.hero-timeline-axis {
    grid-column: 1;
  }
.hero-axis-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 14px;
  }
.hero-timeline-axis {
    padding-left: 0;
  }
.hero-timeline-axis::before {
    display: none;
  }
.hero-axis-node {
    padding-left: 12px;
  }
.hero-axis-node::before {
    left: 0;
  }
.overview-title {
    font-size: 22px;
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.episodes-split {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-index {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: 100%;
  }
.episode-index-item {
    width: 100%;
  }
.episode-list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
.comments-columns {
    column-count: 1;
  }
.comment-card:nth-child(even) {
    margin-left: 0;
  }
.rec-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }}
@media (max-width: 480px) {.page-main {
    padding: 10px 10px 18px;
    gap: 10px;
  }
.header-inner {
    padding: 7px 10px;
  }
.overview-poster {
    max-width: none;
  }
.cast-grid {
    grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  }
.episode-index {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
.episode-list {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-list {
    grid-template-columns: minmax(0, 1fr);
  }
.player-controls {
    gap: 5px;
  }
.player-btn {
    padding: 3px 9px;
    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}
