:root {
  --navy: #0d1b2a;
  --navy-deep: #08111c;
  --navy-soft: #142b42;
  --rust: #8f3a2a;
  --rust-bright: #b84a34;
  --gold: #b98a3f;
  --gold-soft: #d8b26a;
  --cloth: #e8e0d2;
  --cloth-dim: #a89e8d;
  --ink: #1a1614;
  --line: rgba(185, 138, 63, 0.28);
  --line-strong: rgba(185, 138, 63, 0.5);
  --warm-glow: rgba(216, 178, 106, 0.14);
  --font-stack: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", "Noto Sans CJK SC", sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body, h1, h2, h3, p, dl, dd, dt {
  margin: 0;
  padding: 0;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
input[type="range"] {
  font: inherit;
}
body {
  background:
    linear-gradient(180deg, #08111c 0%, #0d1b2a 42%, #0b1622 100%);
  color: var(--cloth);
  font-family: var(--font-stack);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
}
.site-main {
  display: block;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 14px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background:
    linear-gradient(180deg, rgba(8, 17, 28, 0.98), rgba(13, 27, 42, 0.94));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.site-brand {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  white-space: nowrap;
  padding: 4px 0;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
  border-left: 4px solid var(--rust);
  padding-left: 9px;
}
a[data-contract="site-name"] {
  color: var(--gold-soft);
  text-decoration: none;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus-visible {
  color: var(--cloth);
  text-decoration: underline;
}
.header-nav {
  flex: 1 1 auto;
  min-width: 0;
}
.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.nav-item {
  display: block;
}
.nav-link {
  display: block;
  padding: 5px 11px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cloth-dim);
  border: 1px solid transparent;
  border-radius: 2px;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
a.nav-link {
  color: var(--cloth-dim);
  text-decoration: none;
}
a.nav-link:hover, a.nav-link:focus-visible {
  color: var(--gold-soft);
  border-color: var(--line-strong);
  background: rgba(185, 138, 63, 0.09);
}
.categories-strip {
  border-top: 1px solid rgba(185, 138, 63, 0.16);
  background: rgba(143, 58, 42, 0.1);
}
.categories-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 6px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 3px 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(8, 17, 28, 0.6);
}
a.runtime-category {
  color: var(--cloth-dim);
  text-decoration: none;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--gold-soft);
  border-color: var(--gold);
  background: rgba(185, 138, 63, 0.14);
}
.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0 6px;
}
.hero-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  background:
    linear-gradient(155deg, rgba(20, 43, 66, 0.9) 0%, rgba(8, 17, 28, 0.96) 55%, rgba(143, 58, 42, 0.22) 100%);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 12px;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.55);
}
.poster-shell {
  width: 100%;
  max-width: 300px;
  flex: 0 0 auto;
  align-self: flex-start;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  background: var(--navy-deep);
}
.poster-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(216, 178, 106, 0.07), rgba(8, 17, 28, 0.35));
}
.poster-shell img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}
.hero-backdrop {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.hero-scene {
  font-size: 12px;
  letter-spacing: 0.09em;
  color: var(--gold);
  padding: 5px 9px;
  border-left: 3px solid var(--rust);
  background: linear-gradient(90deg, rgba(143, 58, 42, 0.24), transparent 78%);
  border-radius: 0 2px 2px 0;
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: #000;
  overflow: hidden;
}
.player-shell video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  padding: 7px 8px;
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.96), rgba(8, 17, 28, 0.99));
  border-top: 1px solid var(--line);
}
.ctrl-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cloth);
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(143, 58, 42, 0.24);
  white-space: nowrap;
  transition: background 0.14s ease, border-color 0.14s ease, color 0.14s ease;
}
.ctrl-btn:hover {
  background: rgba(184, 74, 52, 0.42);
  border-color: var(--rust-bright);
  color: #fff;
}
.ctrl-btn.is-active, .ctrl-btn.is-muted, .ctrl-btn.click {
  background: var(--rust);
  border-color: var(--gold);
  color: var(--gold-soft);
}
.ctrl-progress {
  flex: 1 1 140px;
  min-width: 90px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(232, 224, 210, 0.18);
  border-radius: 2px;
  cursor: pointer;
}
.ctrl-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--rust);
}
.ctrl-progress::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--rust);
}
.ctrl-volume {
  flex: 0 1 76px;
  min-width: 56px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(232, 224, 210, 0.18);
  border-radius: 2px;
  cursor: pointer;
}
.ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cloth-dim);
}
.ctrl-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cloth-dim);
  border: 0;
}
.hero-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(20, 43, 66, 0.55), rgba(8, 17, 28, 0.9));
  border: 1px solid var(--line);
  border-top: 3px solid var(--rust);
  border-radius: 3px;
}
.movie-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--cloth);
  text-shadow: 0 2px 0 rgba(143, 58, 42, 0.5);
}
.movie-tagline {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}
.movie-seo {
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--cloth-dim);
  text-align: justify;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.status-current {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  background: var(--rust);
  color: #f6e6cd;
  border: 1px solid rgba(216, 178, 106, 0.5);
}
.status-total {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  background: rgba(185, 138, 63, 0.14);
  border: 1px solid var(--line);
  color: var(--gold-soft);
}
.cast-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.cast-heading {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 7px;
}
.cast-heading::before {
  content: "";
  width: 3px;
  height: 13px;
  background: var(--rust);
  display: inline-block;
}
.cast-scroll {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-width: thin;
  scrollbar-color: var(--rust) transparent;
  -webkit-overflow-scrolling: touch;
}
.cast-scroll::-webkit-scrollbar {
  height: 5px;
}
.cast-scroll::-webkit-scrollbar-thumb {
  background: var(--rust);
  border-radius: 3px;
}
.cast-card {
  flex: 0 0 auto;
  min-width: 84px;
  padding: 8px 10px;
  background:
    linear-gradient(160deg, rgba(143, 58, 42, 0.34), rgba(8, 17, 28, 0.85));
  border: 1px solid var(--line);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.cast-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.cast-name {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cloth);
  white-space: nowrap;
}
.synopsis-block, .details-block {
  padding-top: 8px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.synopsis-heading, .details-heading {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 7px;
}
.synopsis-heading::before, .details-heading::before {
  content: "";
  width: 3px;
  height: 13px;
  background: var(--rust);
  display: inline-block;
}
.synopsis-text {
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--cloth-dim);
  text-align: justify;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 10px;
}
.details-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 4px 0;
  border-bottom: 1px dotted rgba(185, 138, 63, 0.22);
  min-width: 0;
}
.details-key {
  flex: 0 0 auto;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.details-value {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px;
  color: var(--cloth);
  overflow-wrap: break-word;
}
.section-heading {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--cloth);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--line);
  position: relative;
}
.section-heading::before {
  content: "";
  width: 5px;
  height: 16px;
  background: var(--rust);
  display: inline-block;
}
.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 64px;
  height: 2px;
  background: var(--gold);
}
.timeline-section {
  padding: 18px 0 4px;
}
.timeline-stitch {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 22px;
}
.timeline-stitch::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 7px;
  width: 2px;
  background-image: linear-gradient(180deg, var(--gold) 0 7px, transparent 7px 13px);
  background-size: 2px 13px;
  background-repeat: repeat-y;
}
.timeline-node {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 10px;
  padding: 7px 11px;
  background:
    linear-gradient(100deg, rgba(20, 43, 66, 0.82), rgba(8, 17, 28, 0.7));
  border: 1px solid var(--line);
  border-left: 3px solid var(--rust);
  border-radius: 2px 3px 3px 2px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: -19px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 2px solid var(--navy-deep);
  box-shadow: 0 0 0 1px var(--gold);
}
.timeline-timecode {
  flex: 0 0 auto;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
  padding: 1px 7px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(143, 58, 42, 0.28);
  white-space: nowrap;
}
.timeline-label {
  flex: 1 1 240px;
  min-width: 0;
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--cloth);
}
.episodes-section {
  padding: 18px 0 4px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px 10px;
  background:
    linear-gradient(160deg, rgba(20, 43, 66, 0.72), rgba(8, 17, 28, 0.88));
  border: 1px solid var(--line);
  border-top: 3px solid var(--rust);
  border-radius: 2px;
  position: relative;
  min-width: 0;
}
.episode-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 12px solid rgba(185, 138, 63, 0.28);
  border-left: 12px solid transparent;
}
.episode-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  white-space: nowrap;
}
.episode-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--cloth);
  line-height: 1.3;
}
.episode-summary {
  font-size: 12px;
  line-height: 1.62;
  color: var(--cloth-dim);
  flex: 1 1 auto;
}
.episode-duration {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  padding: 1px 7px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(8, 17, 28, 0.7);
}
.comments-section {
  padding: 18px 0 4px;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  align-items: start;
}
.comment-patch {
  position: relative;
  padding: 10px 11px 11px;
  background:
    linear-gradient(150deg, rgba(232, 224, 210, 0.96), rgba(214, 202, 184, 0.9));
  color: var(--ink);
  border-radius: 2px;
  box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.45);
  min-width: 0;
}
.comment-patch::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px dashed rgba(143, 58, 42, 0.5);
  border-radius: 1px;
  pointer-events: none;
}
.comment-patch:nth-child(even) {
  transform: rotate(-0.5deg);
}
.comment-patch:nth-child(odd) {
  transform: rotate(0.4deg);
}
.comment-nickname {
  display: inline-block;
  position: relative;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #7a2c1e;
  margin-bottom: 5px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(143, 58, 42, 0.4);
}
.comment-text {
  position: relative;
  font-size: 12.5px;
  line-height: 1.66;
  color: #2b2320;
}
.recommend-section {
  padding: 18px 0 4px;
}
.recommend-heading {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--cloth);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.recommend-heading::before {
  content: "";
  width: 5px;
  height: 14px;
  background: var(--gold);
  display: inline-block;
}
.recommend-grid {
  display: grid;
  gap: 9px;
  align-items: start;
}
.recommend-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.recommend-grid--three {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  background:
    linear-gradient(165deg, rgba(20, 43, 66, 0.7), rgba(8, 17, 28, 0.9));
  border: 1px solid var(--line);
  border-radius: 2px;
  min-width: 0;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
a.recommend-card {
  color: var(--cloth);
  text-decoration: none;
}
a.recommend-card:hover, a.recommend-card:focus-visible {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.recommend-card img, [data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  background: var(--navy-deep);
}
.recommend-pic {
  border: 1px solid rgba(185, 138, 63, 0.24);
}
.recommend-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--cloth);
  line-height: 1.35;
}
.recommend-blurb {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--cloth-dim);
}
.site-footer {
  margin-top: 22px;
  border-top: 2px solid var(--line);
  background:
    linear-gradient(180deg, rgba(8, 17, 28, 0.9), rgba(8, 17, 28, 1));
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: flex-start;
}
.footer-disclaimer {
  flex: 1 1 340px;
  min-width: 0;
  font-size: 11.5px;
  line-height: 1.66;
  color: rgba(168, 158, 141, 0.85);
}
.footer-nav {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-home"]:focus-visible, a[data-contract="footer-sitemap"]:focus-visible {
  color: var(--cloth);
  border-bottom-color: var(--rust-bright);
}
.friend-links {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  padding-top: 9px;
  border-top: 1px dashed var(--line);
}
.friend-links-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
  white-space: nowrap;
}
.runtime-friend-link {
  font-size: 11.5px;
  color: var(--cloth-dim);
  text-decoration: none;
  padding: 2px 8px;
  border: 1px solid rgba(185, 138, 63, 0.2);
  border-radius: 2px;
  background: rgba(20, 43, 66, 0.45);
  white-space: nowrap;
}
a.runtime-friend-link {
  color: var(--cloth-dim);
  text-decoration: none;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--gold-soft);
  border-color: var(--gold);
  background: rgba(143, 58, 42, 0.3);
}
body.theater-mode .site-header, body.theater-mode .site-footer {
  opacity: 0.35;
}
body.theater-mode .site-main {
  max-width: 100%;
}
body.theater-mode .hero-stage {
  grid-template-columns: minmax(0, 1fr);
}
body.theater-mode .player-shell {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--rust), 0 0 34px rgba(143, 58, 42, 0.55);
}
body.lights-off {
  background: #03070c;
}
body.lights-off .site-header, body.lights-off .site-footer, body.lights-off .hero-info, body.lights-off .timeline-section, body.lights-off .episodes-section, body.lights-off .comments-section, body.lights-off .recommend-section {
  opacity: 0.3;
}
body.lights-off .player-shell {
  box-shadow: 0 0 0 1px var(--gold), 0 0 46px rgba(216, 178, 106, 0.4);
}
.player-shell:fullscreen {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.player-shell:fullscreen video {
  max-height: calc(100% - 46px);
  object-fit: contain;
}
.player-shell:-webkit-full-screen {
  width: 100%;
  height: 100%;
  background: #000;
}
.ctrl-btn.fullscreen, .ctrl-btn.play, .ctrl-btn.mute, .ctrl-btn.speed, .ctrl-btn.pip, .ctrl-btn.theater, .ctrl-btn.light {
  border-color: var(--line);
}
.ctrl-progress.progress, .ctrl-volume.volume {
  accent-color: var(--gold);
}
@media (max-width: 1024px) {.hero-stage {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  }
.movie-title {
    font-size: 21px;
  }
.episode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.comment-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 820px) {.hero-stage {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-grid--four, .recommend-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.footer-disclaimer {
    flex: 1 1 100%;
  }}
@media (max-width: 600px) {.site-main {
    padding: 0 10px;
  }
.header-inner {
    padding: 7px 10px;
    gap: 8px;
  }
.site-brand {
    font-size: 15px;
  }
.nav-link {
    padding: 4px 8px;
    font-size: 12px;
  }
.categories-inner {
    padding: 5px 10px;
  }
.hero-media, .hero-info {
    padding: 10px;
  }
.movie-title {
    font-size: 19px;
  }
.poster-shell {
    max-width: 220px;
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-patch:nth-child(even), .comment-patch:nth-child(odd) {
    transform: none;
  }
.recommend-grid--four, .recommend-grid--three {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-stitch {
    padding-left: 19px;
  }
.timeline-node::before {
    left: -16px;
  }
.footer-inner {
    padding: 12px 10px;
    gap: 8px 12px;
  }
.ctrl-volume {
    flex: 0 1 60px;
  }}
@media (max-width: 380px) {.nav-list {
    gap: 2px;
  }
.nav-link {
    padding: 4px 6px;
    font-size: 11.5px;
  }
.ctrl-btn {
    font-size: 10.5px;
    padding: 3px 7px;
  }}

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}
