:root {
  --steel-950: #0a0c0d;
  --steel-900: #101315;
  --steel-800: #171b1e;
  --steel-700: #212629;
  --steel-600: #2e3438;
  --rust-900: #3a1a12;
  --rust-700: #6e2a1a;
  --rust-500: #a83c22;
  --rust-400: #c65a35;
  --cyan-900: #0c2b2e;
  --cyan-500: #4fd6d0;
  --cyan-300: #9ff0ea;
  --bone: #dfe4e2;
  --bone-dim: #a4aeac;
  --ink: #060708;
  --line: #2a3134;
  --maxw: 1240px;
  --font-hard: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans SC", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background-color: var(--steel-950);
  background-image:
    linear-gradient(180deg, rgba(10, 12, 13, 0.92) 0%, rgba(10, 12, 13, 0.98) 60%, #050607 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 4px);
  color: var(--bone);
  font-family: var(--font-hard);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 500;
  min-height: 100%;
  overflow-x: hidden;
}
img, video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol, dl, dd, p, h1, h2, h3 {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
button, input {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  border: 0;
  background: none;
}
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
::selection {
  background: var(--rust-500);
  color: #fff;
}
.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(23, 27, 30, 0.9), rgba(10, 12, 13, 0.92));
  position: relative;
  z-index: 20;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rust-700) 30%, transparent 70%);
}
a[data-contract="site-name"] {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-300);
  text-decoration: none;
  padding: 2px 0;
  border-left: 3px solid var(--rust-500);
  padding-left: 10px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus-visible {
  color: #fff;
  border-left-color: var(--cyan-500);
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 4px 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
  text-decoration: none;
  background: var(--steel-800);
  border: 1px solid var(--line);
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%);
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: #fff;
  background: var(--rust-700);
  border-color: var(--rust-500);
}
.dream-archive {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 20px 24px;
}
.dream-archive > section {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.dream-archive > section:first-child {
  border-top: 0;
  padding-top: 0;
}
h2 {
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-300);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
h2::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--rust-700), transparent);
}
.movie-overview {
  display: grid;
  grid-template-columns: minmax(0, 2.35fr) minmax(260px, 1fr);
  gap: 14px 20px;
  align-items: start;
  position: relative;
  padding: 14px;
  background: linear-gradient(160deg, rgba(23, 27, 30, 0.96), rgba(12, 15, 16, 0.98));
  border: 1px solid var(--line);
  border-left: 3px solid var(--rust-700);
}
.overview-banner {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  padding: 4px 2px 2px;
  min-width: 0;
}
.overview-tagline {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--rust-400);
  text-transform: uppercase;
  margin-bottom: 6px;
  text-shadow: 0 0 14px rgba(168, 60, 34, 0.4);
}
.overview-title {
  font-size: clamp(34px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.98;
  color: #f4f7f6;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.6),
    0 0 26px rgba(79, 214, 208, 0.18),
    2px 2px 0 rgba(110, 42, 26, 0.55);
  -webkit-text-stroke: 0.4px rgba(198, 90, 53, 0.35);
  margin-bottom: 10px;
}
.overview-seo {
  max-width: 62ch;
  font-size: 14px;
  line-height: 1.62;
  color: var(--bone-dim);
  border-left: 2px solid var(--steel-600);
  padding-left: 12px;
}
.overview-media {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 2.1fr);
  gap: 12px;
  align-items: start;
  min-width: 0;
}
.poster-frame {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 2 / 3;
  align-self: start;
  border: 1px solid var(--steel-600);
  background: var(--steel-900);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.6), 0 12px 30px rgba(0, 0, 0, 0.55);
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(79, 214, 208, 0.07), transparent 45%, rgba(168, 60, 34, 0.16));
  pointer-events: none;
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.9);
}
.player-frame {
  position: relative;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--steel-600);
  background: #000;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.7), 0 14px 34px rgba(0, 0, 0, 0.6);
}
.dream-player {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  padding: 7px 8px;
  background: linear-gradient(180deg, rgba(23, 27, 30, 0.98), rgba(10, 12, 13, 1));
  border-top: 1px solid var(--line);
}
.player-controls button {
  flex: 0 0 auto;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--bone-dim);
  background: var(--steel-800);
  border: 1px solid var(--line);
  border-radius: 0;
  transition: color 0.14s ease, background 0.14s ease, border-color 0.14s ease;
}
.player-controls button:hover, .player-controls button:focus-visible {
  color: #fff;
  background: var(--rust-700);
  border-color: var(--rust-500);
}
.ctrl-progress {
  flex: 1 1 140px;
  min-width: 90px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--steel-600);
  border-radius: 0;
  cursor: pointer;
}
.ctrl-volume {
  flex: 0 1 84px;
  min-width: 56px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--steel-600);
  border-radius: 0;
  cursor: pointer;
}
.ctrl-progress::-webkit-slider-thumb, .ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 14px;
  background: var(--cyan-500);
  border: 0;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  cursor: pointer;
}
.ctrl-progress::-moz-range-thumb, .ctrl-volume::-moz-range-thumb {
  width: 10px;
  height: 14px;
  background: var(--cyan-500);
  border: 0;
  border-radius: 0;
  cursor: pointer;
}
.ctrl-progress::-moz-range-track, .ctrl-volume::-moz-range-track {
  height: 4px;
  background: var(--steel-600);
}
.player-controls button.is-playing, .player-controls button.is-active, .player-controls button.is-adjusted, .player-controls button.is-changed, .player-controls button.is-muted, .player-controls button.is-seeking {
  color: var(--ink);
  background: var(--cyan-500);
  border-color: var(--cyan-300);
}
body.theater-mode .movie-overview {
  padding: 10px;
}
body.theater-mode .player-frame {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 1px rgba(79, 214, 208, 0.5), 0 0 40px rgba(79, 214, 208, 0.18);
}
body.lights-dim {
  background-color: #030404;
}
body.lights-dim .dream-archive {
  filter: brightness(0.82) contrast(1.08);
}
.episode-status {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-self: start;
  padding: 12px;
  background: linear-gradient(180deg, var(--steel-800), var(--steel-900));
  border: 1px solid var(--line);
  border-top: 2px solid var(--cyan-500);
}
.status-current {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
}
.status-total {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--rust-400);
}
.status-progress {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--cyan-300);
  border-top: 1px dashed var(--steel-600);
  padding-top: 7px;
  margin-top: 2px;
}
.cast-rail {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.cast-heading {
  margin-bottom: 9px;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}
.cast-member {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 1 auto;
  padding: 6px 12px 6px 6px;
  background: var(--steel-800);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
}
.cast-avatar {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
  background: linear-gradient(150deg, var(--cyan-300), var(--cyan-500) 60%, var(--rust-400));
  border: 1px solid var(--steel-600);
  border-radius: 50%;
  overflow: hidden;
}
.cast-name {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--bone);
  letter-spacing: 0.02em;
}
.cast-role {
  font-size: 12px;
  color: var(--bone-dim);
  letter-spacing: 0.02em;
}
.cast-member {
  flex-wrap: wrap;
}
.cast-member .cast-name {
  flex: 0 0 auto;
}
.cast-member .cast-role {
  flex: 1 1 auto;
}
.synopsis-block {
  grid-column: 1;
  grid-row: 4;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.synopsis-heading {
  margin-bottom: 8px;
}
.synopsis-paragraph {
  font-size: 13.5px;
  line-height: 1.66;
  color: var(--bone-dim);
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 2px solid var(--steel-700);
}
.synopsis-paragraph:last-child {
  margin-bottom: 0;
  border-left-color: var(--rust-700);
  color: var(--bone);
}
.details-grid {
  grid-column: 2;
  grid-row: 4;
  align-self: start;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.details-heading {
  margin-bottom: 8px;
}
.details-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--steel-900);
}
.details-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 10px;
  border-bottom: 1px solid var(--steel-800);
}
.details-row:last-child {
  border-bottom: 0;
}
.details-key {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cyan-300);
}
.details-value {
  flex: 1 1 auto;
  text-align: right;
  font-size: 13px;
  font-weight: 700;
  color: var(--bone);
}
.timeline-band {
  overflow: hidden;
}
.timeline-heading {
  margin-bottom: 12px;
}
.timeline-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
  padding: 26px 0 6px;
  border-top: 1px solid var(--steel-600);
  background-image: repeating-linear-gradient(90deg, var(--steel-700) 0 1px, transparent 1px 40px);
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--rust-700), var(--steel-600) 40%, var(--cyan-900));
}
.timeline-node {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  padding: 0 12px 0 14px;
  border-left: 1px solid var(--steel-800);
}
.timeline-node:first-child {
  border-left: 0;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 10px;
  width: 13px;
  height: 15px;
  background: var(--steel-600);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 58%, 0 100%);
  border: 0;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}
.timeline-node.is-active::before, .timeline-node:first-child::before {
  background: var(--cyan-500);
  box-shadow: 0 0 0 1px var(--cyan-300), 0 0 16px rgba(79, 214, 208, 0.75);
}
.node-timecode {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--rust-400);
  margin-bottom: 5px;
  font-variant-numeric: tabular-nums;
}
.node-label {
  display: block;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--bone-dim);
}
.episode-columns {
  overflow: hidden;
}
.episodes-heading {
  margin-bottom: 10px;
}
.episode-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px 10px 12px;
  background: linear-gradient(180deg, var(--steel-800), var(--steel-900));
  border: 1px solid var(--line);
  border-left: 2px solid var(--steel-600);
  min-width: 0;
  overflow: hidden;
  transition: border-color 0.16s ease, background 0.16s ease;
}
.episode-card:hover {
  border-left-color: var(--rust-500);
}
.episode-card-active {
  border-left-color: var(--cyan-500);
  border-color: rgba(79, 214, 208, 0.4);
  background: linear-gradient(180deg, var(--cyan-900), var(--steel-900));
  box-shadow: 0 0 0 1px rgba(79, 214, 208, 0.25), 0 0 24px rgba(79, 214, 208, 0.12);
}
.episode-number {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--rust-400);
  text-transform: uppercase;
}
.episode-card-active .episode-number {
  color: var(--cyan-300);
}
.episode-title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #f2f6f5;
}
.episode-summary {
  font-size: 12px;
  line-height: 1.52;
  color: var(--bone-dim);
  flex: 1 1 auto;
}
.episode-duration {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--steel-600);
  color: #7f8a89;
}
.episode-mini-progress {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--steel-700);
  margin-top: 3px;
  position: relative;
  overflow: hidden;
}
.episode-mini-progress::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 22%;
  background: linear-gradient(90deg, var(--rust-500), var(--rust-400));
}
.episode-card-active .episode-mini-progress::after {
  width: 46%;
  background: linear-gradient(90deg, var(--cyan-500), var(--cyan-300));
}
.comment-grid {
  overflow: hidden;
}
.comments-heading {
  margin-bottom: 10px;
}
.comment-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.comment-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px 11px;
  background: var(--steel-900);
  border: 1px solid var(--line);
  border-top: 2px solid var(--steel-600);
  min-width: 0;
}
.comment-card:nth-child(3n + 1) {
  border-top-color: var(--rust-700);
}
.comment-card:nth-child(3n + 2) {
  border-top-color: var(--cyan-900);
}
.comment-nickname {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--cyan-300);
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--bone-dim);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recommend-region {
  padding: 11px;
  background: var(--steel-900);
  border: 1px solid var(--line);
  min-width: 0;
}
.region-one {
  border-left: 3px solid var(--rust-500);
}
.region-two {
  border-left: 3px solid var(--cyan-500);
}
.region-three {
  border-left: 3px solid #7a8f4a;
}
.recommend-heading {
  font-size: 13.5px;
  letter-spacing: 0.16em;
  margin-bottom: 9px;
  color: var(--bone);
}
.region-one .recommend-heading {
  color: var(--rust-400);
}
.region-two .recommend-heading {
  color: var(--cyan-300);
}
.region-three .recommend-heading {
  color: #b9c98b;
}
.recommend-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  align-items: start;
}
.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 5px;
  background: var(--steel-800);
  border: 1px solid var(--line);
  min-width: 0;
  transition: border-color 0.16s ease, background 0.16s ease;
}
a.recommend-card {
  color: var(--bone);
  text-decoration: none;
}
a.recommend-card:hover, a.recommend-card:focus-visible {
  border-color: var(--rust-500);
  background: var(--steel-700);
}
.region-two a.recommend-card:hover, .region-two a.recommend-card:focus-visible {
  border-color: var(--cyan-500);
}
.region-three a.recommend-card:hover, .region-three a.recommend-card:focus-visible {
  border-color: #7a8f4a;
}
a[data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  display: block;
  background: #000;
  filter: contrast(1.06) saturate(0.92);
}
a.recommend-card span[data-runtime="name"] {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  color: #eef3f1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
a.recommend-card span[data-runtime="blurb"] {
  font-size: 11px;
  line-height: 1.45;
  color: var(--bone-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 20px 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: #6f7a79;
  max-width: 90ch;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--cyan-300);
  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-home"]:focus-visible, a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-sitemap"]:focus-visible {
  color: #fff;
  border-bottom-color: var(--rust-500);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  padding-top: 7px;
  border-top: 1px dashed var(--steel-700);
}
.friend-links-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--rust-400);
  text-transform: uppercase;
}
a.runtime-friend-link {
  font-size: 12px;
  color: #7f8a89;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--cyan-300);
  border-bottom-color: var(--cyan-500);
}
@media (max-width: 1080px) {.episode-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.recommend-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 900px) {.movie-overview {
    grid-template-columns: minmax(0, 1fr);
  }
.overview-banner, .overview-media, .episode-status, .cast-rail, .synopsis-block, .details-grid {
    grid-column: 1;
    grid-row: auto;
  }
.overview-media {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 2fr);
  }
.comment-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-track {
    flex-direction: column;
    gap: 8px;
    padding: 8px 0 0;
    background-image: none;
  }
.timeline-track::before {
    display: none;
  }
.timeline-node {
    flex: 1 1 auto;
    padding: 8px 0 8px 26px;
    border-left: 0;
    border-top: 1px solid var(--steel-800);
    position: relative;
  }
.timeline-node:first-child {
    border-top: 0;
  }
.timeline-node::before {
    top: 10px;
    left: 4px;
  }}
@media (max-width: 640px) {body {
    font-size: 14px;
  }
.site-header {
    padding: 10px 14px;
  }
.category-strip {
    justify-content: flex-start;
  }
.dream-archive {
    padding: 12px 14px 20px;
    gap: 12px;
  }
.overview-media {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-frame {
    max-width: 200px;
  }
.episode-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-list {
    grid-template-columns: minmax(0, 1fr);
  }
.site-footer {
    padding: 12px 14px 22px;
  }}
@media (max-width: 380px) {.episode-list, .recommend-list {
    grid-template-columns: minmax(0, 1fr);
  }
.overview-title {
    font-size: 30px;
  }}

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}
