:root {
  --ink: #1c2326;
  --ink-soft: #2d383c;
  --paper: #e9e2cf;
  --paper-dim: #d8cfb8;
  --paper-warm: #ded3b6;
  --rain: #6f8388;
  --rain-deep: #4a5c62;
  --rain-dark: #35444a;
  --muted: #7d8a8c;
  --red: #7a2323;
  --red-soft: #9c3a34;
  --line: rgba(74, 92, 98, 0.28);
  --line-soft: rgba(74, 92, 98, 0.14);
  --serif: "Songti SC", "STSong", "SimSun", "Noto Serif SC", Georgia, serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --hand: "Kaiti SC", "STKaiti", "KaiTi", "Songti SC", serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background-color: #263236;
  background-image:
    radial-gradient(circle at 18% 12%, rgba(233, 226, 207, 0.07), transparent 42%),
    radial-gradient(circle at 84% 78%, rgba(111, 131, 136, 0.12), transparent 46%),
    linear-gradient(160deg, #2b383d 0%, #222c30 55%, #1b2427 100%);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.62;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img, video {
  display: block;
  max-width: 100%;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, #222d31 0%, #1d272b 100%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(233, 226, 207, 0.05), 0 8px 18px -14px rgba(0, 0, 0, 0.9);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.brand-mark {
  font-family: var(--hand);
  font-size: 20px;
  letter-spacing: 0.16em;
  color: var(--paper);
  padding: 2px 10px 3px;
  border-bottom: 1px solid var(--red-soft);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}
a[data-contract="site-name"] {
  color: var(--paper);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus-visible {
  color: #f3ecd8;
  border-color: var(--red);
}
.category-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}
.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  color: var(--rain);
  border: 1px solid var(--line);
  background: rgba(233, 226, 207, 0.04);
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
a.runtime-category {
  color: var(--rain);
  text-decoration: none;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--paper);
  border-color: var(--red-soft);
  background: rgba(122, 35, 35, 0.22);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 18px 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-heading {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--paper-dim);
  padding-left: 10px;
  border-left: 3px solid var(--red);
  margin-bottom: 9px;
  line-height: 1.3;
}
.movie-overview {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 16px 18px;
  background-color: #2a3639;
  background-image:
    linear-gradient(180deg, rgba(233, 226, 207, 0.05), rgba(233, 226, 207, 0) 40%),
    repeating-linear-gradient(0deg, rgba(74, 92, 98, 0.09) 0 1px, transparent 1px 26px);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(233, 226, 207, 0.03), 0 14px 30px -24px #000;
}
.hero-rain-paper {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.hero-poster-stack {
  position: relative;
  isolation: isolate;
}
.poster-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #202a2d;
  border: 1px solid var(--line);
  box-shadow: 0 18px 34px -26px #000;
}
.poster-media-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(28, 35, 38, 0.2) 0%, rgba(28, 35, 38, 0.62) 100%),
    radial-gradient(circle at 70% 24%, rgba(233, 226, 207, 0.16), transparent 52%);
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.62) contrast(1.02) brightness(0.92) sepia(0.12);
}
.hero-handwriting-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2px;
  padding: 14px 12px;
  pointer-events: none;
}
.handwriting-line {
  font-family: var(--hand);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  writing-mode: horizontal-tb;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}
.handw-1 {
  color: rgba(233, 226, 207, 0.94);
  align-self: flex-end;
}
.handw-2 {
  color: rgba(233, 226, 207, 0.6);
  align-self: flex-end;
  margin-top: 4px;
}
.handw-3 {
  color: rgba(233, 226, 207, 0.24);
  align-self: flex-end;
  margin-top: 4px;
}
.hero-slogan-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 26px 6px 26px 0;
  min-width: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.movie-title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0.06em;
  color: #f0e9d6;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
}
.movie-tagline {
  font-family: var(--hand);
  font-size: 17px;
  line-height: 1.85;
  letter-spacing: 0.1em;
  color: var(--rain);
  max-width: 34ch;
  padding-left: 2px;
  border-left: 2px solid rgba(122, 35, 35, 0.6);
  padding-left: 12px;
}
.details-strip {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.details-strip .section-heading {
  margin-bottom: 8px;
}
.details-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--line-soft);
  background: rgba(233, 226, 207, 0.035);
}
.detail-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 5px 12px;
  border-right: 1px solid var(--line-soft);
  font-size: 12.5px;
  white-space: nowrap;
  flex: 0 1 auto;
}
.detail-item:last-child {
  border-right: 0;
}
.detail-label {
  color: var(--muted);
  font-size: 11.5px;
  letter-spacing: 0.12em;
}
.detail-value {
  color: var(--paper);
  letter-spacing: 0.04em;
}
.detail-score .detail-value {
  font-family: var(--serif);
  font-size: 16px;
  color: #e8b96a;
  letter-spacing: 0.06em;
}
.synopsis-panel {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.synopsis-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 8px 24px;
}
.synopsis-paragraph {
  font-size: 13.5px;
  line-height: 1.78;
  color: #c9c3ae;
  padding-left: 12px;
  border-left: 1px solid var(--line-soft);
  text-align: justify;
}
.cast-strip {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.cast-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cast-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 6px;
  background: rgba(233, 226, 207, 0.05);
  border: 1px solid var(--line);
  border-radius: 0;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.cast-chip:hover {
  border-color: var(--red-soft);
  background: rgba(122, 35, 35, 0.16);
}
.cast-avatar {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(233, 226, 207, 0.42), rgba(74, 92, 98, 0.3) 62%, rgba(28, 35, 38, 0.9));
  border: 1px solid rgba(233, 226, 207, 0.18);
  filter: saturate(0.5);
}
.cast-name {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--paper-dim);
  white-space: nowrap;
}
.episode-status-panel {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.status-track {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 12px;
  background: linear-gradient(90deg, rgba(122, 35, 35, 0.24), rgba(233, 226, 207, 0.04) 70%);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--red);
}
.status-figure {
  font-family: var(--serif);
  font-size: 13.5px;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
.status-current {
  color: #e8b96a;
}
.status-total {
  color: var(--muted);
}
.status-divider {
  flex: 1 1 auto;
  height: 1px;
  min-width: 20px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
}
.player-shell {
  position: relative;
  width: 100%;
  max-width: none;
  margin-top: 4px;
  background: #131a1d;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -30px #000;
}
.player-shell video {
  display: block;
  width: 100%;
  background: #0d1315;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: linear-gradient(180deg, #263236, #1c2629);
  border-top: 1px solid var(--line);
}
.ctrl-btn {
  padding: 4px 11px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--paper-dim);
  background: rgba(233, 226, 207, 0.05);
  border: 1px solid var(--line);
  border-radius: 0;
  white-space: nowrap;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.ctrl-btn:hover, .ctrl-btn:focus-visible {
  color: var(--paper);
  border-color: var(--red-soft);
  background: rgba(122, 35, 35, 0.24);
}
.ctrl-range {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  flex: 1 1 120px;
  min-width: 90px;
  background: linear-gradient(90deg, var(--red-soft), rgba(233, 226, 207, 0.16));
  border: 1px solid var(--line-soft);
  border-radius: 0;
  outline: none;
}
.ctrl-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 15px;
  background: var(--paper);
  border: 1px solid var(--rain-deep);
  border-radius: 0;
  cursor: pointer;
}
.ctrl-range::-moz-range-thumb {
  width: 11px;
  height: 15px;
  background: var(--paper);
  border: 1px solid var(--rain-deep);
  border-radius: 0;
  cursor: pointer;
}
.ctrl-range[data-player-action="volume"] {
  flex: 0 1 90px;
  min-width: 70px;
}
.player-shell.is-playing .ctrl-btn[data-player-action="play"] {
  color: #f0e9d6;
  border-color: var(--red-soft);
  background: rgba(122, 35, 35, 0.3);
}
.player-shell.is-muted .ctrl-btn[data-player-action="mute"] {
  color: #e8b96a;
  border-color: rgba(232, 185, 106, 0.5);
}
.player-shell.has-speed-change .ctrl-btn[data-player-action="speed"] {
  color: #e8b96a;
  border-color: rgba(232, 185, 106, 0.5);
}
.player-shell.is-lights-off {
  background: #05090a;
  border-color: rgba(122, 35, 35, 0.5);
}
.player-shell.is-lights-off .player-controls {
  background: linear-gradient(180deg, #0d1315, #05090a);
}
.player-shell.is-theater {
  box-shadow: 0 0 0 1px rgba(122, 35, 35, 0.55), 0 24px 60px -32px #000;
}
.player-shell:fullscreen {
  background: #05090a;
}
.player-shell:fullscreen video {
  height: 100%;
  object-fit: contain;
}
.player-shell.is-theater .ctrl-btn[data-player-action="theater"] {
  color: #f0e9d6;
  border-color: var(--red-soft);
  background: rgba(122, 35, 35, 0.3);
}
.player-shell.is-lights-off .ctrl-btn[data-player-action="light"] {
  color: #e8b96a;
  border-color: rgba(232, 185, 106, 0.5);
}
.player-shell.is-active-episode {
  outline: 1px solid rgba(122, 35, 35, 0.5);
  outline-offset: -1px;
}
.timeline-section {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.timeline-axis {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 6px 0 10px;
}
.timeline-axis::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(180deg, var(--line) 0 7px, transparent 7px 14px);
}
.timeline-node {
  position: relative;
  width: calc(50% - 26px);
  padding: 8px 12px;
  background: rgba(233, 226, 207, 0.045);
  border: 1px solid var(--line-soft);
  border-radius: 0;
}
.timeline-node::after {
  content: "";
  position: absolute;
  top: 16px;
  width: 9px;
  height: 9px;
  background: var(--rain-deep);
  border: 1px solid var(--paper-dim);
  transform: rotate(45deg);
}
.node-left {
  align-self: flex-start;
  border-left: 2px solid var(--red);
}
.node-left::after {
  right: -31px;
}
.node-right {
  align-self: flex-end;
  border-right: 2px solid var(--red);
  text-align: right;
}
.node-right::after {
  left: -31px;
}
.node-timecode {
  display: block;
  font-family: var(--serif);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  color: var(--red-soft);
  margin-bottom: 3px;
}
.node-label {
  font-size: 13px;
  line-height: 1.66;
  color: #c6c0ab;
}
.episodes-section {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  min-width: 0;
}
.episode-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 12px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--rain-deep) transparent;
}
.episode-rail::-webkit-scrollbar {
  height: 8px;
}
.episode-rail::-webkit-scrollbar-track {
  background: rgba(233, 226, 207, 0.05);
}
.episode-rail::-webkit-scrollbar-thumb {
  background: var(--rain-deep);
}
.episode-card {
  flex: 0 0 196px;
  width: 196px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 11px 11px;
  background: rgba(233, 226, 207, 0.05);
  border: 1px solid var(--line-soft);
  border-top: 2px solid var(--rain-deep);
  border-radius: 0;
  scroll-snap-align: start;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.episode-card:hover {
  background: rgba(233, 226, 207, 0.08);
  border-color: var(--line);
  transform: translateY(-2px);
}
.episode-number {
  font-family: var(--serif);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: var(--rain);
}
.episode-title {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #ded7c2;
  line-height: 1.4;
}
.episode-summary {
  font-size: 12px;
  line-height: 1.64;
  color: #a9a795;
  flex: 1 1 auto;
}
.episode-duration {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding-top: 5px;
  border-top: 1px dashed var(--line-soft);
}
.episode-card-current {
  border-top-color: var(--red);
  background: linear-gradient(180deg, rgba(122, 35, 35, 0.24), rgba(233, 226, 207, 0.05));
}
.episode-card-current .episode-number {
  color: #e8b96a;
}
.episode-card-current .episode-title {
  color: #f0e9d6;
}
.episode-card.is-active-episode {
  border-color: var(--red-soft);
  background: linear-gradient(180deg, rgba(122, 35, 35, 0.34), rgba(233, 226, 207, 0.06));
}
.comments-section {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.comments-masonry {
  columns: 2;
  column-gap: 12px;
}
.comment-card {
  break-inside: avoid;
  display: block;
  margin-bottom: 12px;
  padding: 10px 12px 11px;
  background: rgba(233, 226, 207, 0.05);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--rain-deep);
  border-radius: 0;
}
.comment-tall {
  padding-bottom: 16px;
}
.comment-short {
  padding-bottom: 10px;
}
.comment-nickname {
  display: block;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--red-soft);
  margin-bottom: 5px;
}
.comment-text {
  font-size: 13px;
  line-height: 1.76;
  color: #c4bea9;
  text-align: justify;
}
.rec-region {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  min-width: 0;
}
.rec-grid {
  display: grid;
  gap: 10px;
  align-items: start;
}
.rec-grid-1 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.rec-grid-2 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rec-grid-3 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.rec-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 8px 10px;
  background: rgba(233, 226, 207, 0.05);
  border: 1px solid var(--line-soft);
  border-radius: 0;
  min-width: 0;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
a.rec-item {
  color: inherit;
  text-decoration: none;
}
a.rec-item:hover, a.rec-item:focus-visible {
  border-color: var(--red-soft);
  background: rgba(122, 35, 35, 0.16);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #202a2d;
  border: 1px solid var(--line-soft);
  filter: saturate(0.62) brightness(0.94);
}
.rec-item span[data-runtime="name"] {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #ded7c2;
  line-height: 1.42;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rec-item span[data-runtime="blurb"] {
  display: block;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rec-region-2 .rec-grid-2 .rec-item:nth-child(2) {
  margin-top: 14px;
}
.rec-region-3 .rec-grid-3 .rec-item:nth-child(2), .rec-region-3 .rec-grid-3 .rec-item:nth-child(4) {
  margin-top: 12px;
}
.site-footer {
  margin-top: 8px;
  background: linear-gradient(180deg, #1d272b, #161f22);
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.7;
  color: #828d8c;
  max-width: 78ch;
  padding-left: 10px;
  border-left: 2px solid rgba(122, 35, 35, 0.5);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--line-soft);
}
.friend-links-label {
  font-family: var(--serif);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: var(--paper-dim);
  white-space: nowrap;
  padding-right: 4px;
  border-right: 1px solid var(--line-soft);
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--rain);
  text-decoration: none;
  white-space: nowrap;
  padding: 2px 6px;
  border: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--paper);
  border-color: var(--line);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px dashed var(--line-soft);
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--paper-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: color 0.16s ease, border-color 0.16s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-home"]:focus-visible, a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-sitemap"]:focus-visible {
  color: #f0e9d6;
  border-color: var(--red-soft);
}
@media (max-width: 1024px) {.page-main {
    gap: 18px;
  }
.hero-rain-paper {
    grid-template-columns: minmax(0, 250px) minmax(0, 1fr);
    gap: 20px;
  }
.movie-title {
    font-size: 34px;
  }
.rec-grid-1 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.rec-grid-3 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.hero-rain-paper {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
.poster-media-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
.hero-slogan-block {
    padding: 4px 2px 18px;
    text-align: center;
    align-items: center;
  }
.movie-tagline {
    border-left: 0;
    border-top: 1px solid rgba(122, 35, 35, 0.55);
    padding-left: 0;
    padding-top: 10px;
    max-width: 100%;
  }
.handwriting-line {
    font-size: 14px;
  }
.rec-grid-1, .rec-grid-2, .rec-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.rec-region-2 .rec-grid-2 .rec-item:nth-child(2), .rec-region-3 .rec-grid-3 .rec-item:nth-child(2), .rec-region-3 .rec-grid-3 .rec-item:nth-child(4) {
    margin-top: 0;
  }
.comments-masonry {
    columns: 2;
  }}
@media (max-width: 640px) {.page-main {
    padding: 14px 12px 28px;
    gap: 16px;
  }
.header-inner {
    padding: 8px 12px;
    gap: 8px;
  }
.brand-mark {
    font-size: 17px;
    letter-spacing: 0.1em;
  }
.movie-overview {
    padding: 12px 11px 14px;
  }
.movie-title {
    font-size: 26px;
  }
.movie-tagline {
    font-size: 14px;
    line-height: 1.7;
  }
.detail-item {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    flex: 1 1 46%;
    padding: 5px 9px;
  }
.detail-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
.synopsis-body {
    grid-template-columns: minmax(0, 1fr);
  }
.comments-masonry {
    columns: 1;
  }
.rec-grid-1, .rec-grid-2, .rec-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
.timeline-axis::before {
    left: 9px;
    transform: none;
  }
.timeline-node {
    width: auto;
    margin-left: 26px;
    align-self: stretch;
  }
.node-left, .node-right {
    text-align: left;
    border-left: 2px solid var(--red);
    border-right: 0;
  }
.node-left::after, .node-right::after {
    left: -22px;
    right: auto;
    top: 14px;
  }
.episode-card {
    flex: 0 0 170px;
    width: 170px;
  }
.player-controls {
    gap: 5px;
    padding: 7px 8px;
  }
.ctrl-btn {
    padding: 4px 8px;
    font-size: 11.5px;
  }
.footer-inner {
    padding: 14px 12px 22px;
  }}
@media (max-width: 420px) {.rec-grid-1, .rec-grid-2, .rec-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
.detail-item {
    flex: 1 1 100%;
    border-bottom: 1px solid var(--line-soft);
  }
.detail-item:last-child {
    border-bottom: 0;
  }
.ctrl-range {
    flex: 1 1 100%;
  }
.ctrl-range[data-player-action="volume"] {
    flex: 1 1 100%;
  }}

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}
