:root {
  --tan-dark: #2b1d16;
  --tan-brown: #3d2a1e;
  --tan-mid: #5a4030;
  --bean-green: #6b7a63;
  --bean-green-light: #8a9a80;
  --ash-white: #e8e2d6;
  --ash-muted: #b9b0a0;
  --candle-orange: #d98e3c;
  --candle-glow: #e8a94e;
  --ink: #1a120c;
  --paper: #f0ebe0;
  --line: rgba(217, 142, 60, 0.25);
  --line-soft: rgba(232, 226, 214, 0.12);
  --font-song: "Songti SC", "SimSun", "STSong", "Noto Serif CJK SC", serif;
  --font-hei: "Heiti SC", "SimHei", "STHeiti", "Noto Sans CJK SC", sans-serif;
  --font-mono: "Courier New", "Courier", monospace;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: var(--tan-dark);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(90, 64, 48, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(107, 122, 99, 0.12) 0%, transparent 50%);
  color: var(--ash-white);
  font-family: var(--font-song);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
h1, h2, h3 {
  font-family: var(--font-hei);
  font-weight: 700;
  line-height: 1.3;
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 3px;
  background: var(--tan-mid);
  border-radius: 2px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--candle-orange);
  margin-top: -4px;
  border: 1px solid var(--candle-glow);
}
input[type="range"]::-moz-range-track {
  height: 3px;
  background: var(--tan-mid);
  border-radius: 2px;
}
input[type="range"]::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--candle-orange);
  border: 1px solid var(--candle-glow);
}
button {
  font-family: inherit;
  cursor: pointer;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 18, 12, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.55rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  font-family: var(--font-hei);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--candle-orange);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
a[data-contract="site-name"]::before {
  content: "◆";
  font-size: 0.6rem;
  margin-right: 0.4em;
  vertical-align: middle;
  color: var(--bean-green-light);
}
.categories-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  font-family: var(--font-song);
  font-size: 0.85rem;
  color: var(--ash-muted);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.15rem 0.1rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
a.runtime-category:hover {
  color: var(--candle-glow);
  border-bottom-color: var(--candle-orange);
}
.page-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem 2rem;
}
.hero-stage {
  position: relative;
  margin-bottom: 1.6rem;
  padding-top: 1.2rem;
}
.player-shell {
  position: relative;
  width: 100%;
  background: #000;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 60px rgba(217, 142, 60, 0.06);
}
.player-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0a0705;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.45rem;
  padding: 0.4rem 0.6rem;
  background: linear-gradient(to top, rgba(26, 18, 12, 0.95), rgba(26, 18, 12, 0.75));
  border-top: 1px solid var(--line-soft);
}
.player-controls button {
  font-family: var(--font-song);
  font-size: 0.72rem;
  color: var(--ash-muted);
  background: rgba(90, 64, 48, 0.35);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.player-controls button:hover {
  color: var(--candle-glow);
  background: rgba(90, 64, 48, 0.6);
  border-color: var(--line);
}
.player-controls button.is-active {
  color: var(--ink);
  background: var(--candle-orange);
  border-color: var(--candle-glow);
}
.ctl-progress {
  flex: 1 1 120px;
  min-width: 80px;
  height: 16px;
}
.ctl-volume {
  flex: 0 1 70px;
  min-width: 50px;
  height: 16px;
}
.movie-overview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 0.6rem 1.4rem;
  align-items: start;
  padding: 1.2rem 1.2rem 1.4rem;
  background:
    linear-gradient(135deg, rgba(61, 42, 30, 0.55) 0%, rgba(43, 29, 22, 0.85) 100%);
  border: 1px solid var(--line);
  border-radius: 3px;
  margin-bottom: 1.4rem;
  overflow: hidden;
}
.movie-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--candle-orange), transparent 70%);
}
.poster-wrap {
  grid-row: 1 / 3;
  width: 100%;
  max-width: 220px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}
.poster-img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: var(--tan-mid);
}
.overview-head {
  grid-column: 2;
  min-width: 0;
}
.movie-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ash-white);
  margin-bottom: 0.25rem;
}
.movie-tagline {
  font-family: var(--font-song);
  font-size: 0.9rem;
  color: var(--candle-glow);
  letter-spacing: 0.05em;
  margin-bottom: 0.55rem;
  padding-left: 0.6rem;
  border-left: 2px solid var(--candle-orange);
}
.movie-seo {
  font-size: 0.82rem;
  color: var(--ash-muted);
  line-height: 1.7;
  text-align: justify;
}
.cast-strip {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-soft);
}
.cast-heading {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--bean-green-light);
  margin-bottom: 0.55rem;
}
.cast-heading::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--candle-orange);
  margin-left: 0.6rem;
  vertical-align: middle;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  align-items: flex-start;
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 68px;
  text-align: center;
  flex-shrink: 0;
}
.cast-avatar {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(217, 142, 60, 0.35) 0%, transparent 55%),
    linear-gradient(150deg, var(--tan-mid) 0%, var(--bean-green) 100%);
  border: 1px solid var(--bean-green-light);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.cast-name {
  font-family: var(--font-hei);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ash-white);
  line-height: 1.25;
}
.cast-role {
  font-size: 0.62rem;
  color: var(--ash-muted);
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.synopsis-panel {
  margin-bottom: 1.4rem;
  padding: 1rem 1.2rem 1.1rem;
  background: rgba(43, 29, 22, 0.45);
  border-left: 3px solid var(--bean-green);
  border-radius: 0 3px 3px 0;
}
.synopsis-heading {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--bean-green-light);
  margin-bottom: 0.6rem;
}
.synopsis-heading::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--candle-orange);
  margin-left: 0.6rem;
  vertical-align: middle;
}
.synopsis-columns {
  column-count: 2;
  column-gap: 1.6rem;
  column-rule: 1px solid var(--line-soft);
}
.synopsis-para {
  font-size: 0.82rem;
  color: var(--ash-muted);
  line-height: 1.75;
  text-align: justify;
  margin-bottom: 0.6rem;
  break-inside: avoid;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.episode-status {
  margin-bottom: 1.4rem;
  padding: 0.8rem 1.2rem 0.9rem;
  background: rgba(43, 29, 22, 0.45);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
}
.status-heading {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--bean-green-light);
  margin-bottom: 0.35rem;
}
.status-line {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ash-muted);
  margin-bottom: 0.5rem;
}
.status-total {
  color: var(--ash-white);
}
.status-divider {
  margin: 0 0.4rem;
  color: var(--tan-mid);
}
.status-current {
  color: var(--candle-glow);
}
.status-bar {
  height: 5px;
  background: var(--tan-mid);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4);
}
.status-fill {
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, var(--candle-orange), var(--candle-glow));
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(217, 142, 60, 0.5);
}
.details-panel {
  margin-bottom: 1.4rem;
  padding: 1rem 1.2rem 1.1rem;
  background: rgba(43, 29, 22, 0.45);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
}
.details-heading {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--bean-green-light);
  margin-bottom: 0.55rem;
}
.details-heading::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--candle-orange);
  margin-left: 0.6rem;
  vertical-align: middle;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.2rem 1.6rem;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.22rem 0;
  border-bottom: 1px dotted var(--line-soft);
  font-size: 0.78rem;
}
.detail-row dt {
  flex: 0 0 4.2em;
  color: var(--bean-green-light);
  font-family: var(--font-hei);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}
.detail-row dd {
  color: var(--ash-white);
  flex: 1;
  min-width: 0;
}
.timeline-panel {
  margin-bottom: 1.4rem;
  padding: 1rem 1.2rem 1.1rem;
  background: rgba(43, 29, 22, 0.35);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
}
.timeline-heading {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--bean-green-light);
  margin-bottom: 0.7rem;
}
.timeline-heading::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--candle-orange);
  margin-left: 0.6rem;
  vertical-align: middle;
}
.timeline-list {
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--tan-mid);
}
.timeline-node {
  position: relative;
  display: grid;
  grid-template-columns: 4.2em 1fr;
  gap: 0.15rem 0.8rem;
  align-items: baseline;
  padding: 0.4rem 0 0.45rem;
  border-bottom: 1px solid var(--line-soft);
}
.timeline-node:last-child {
  border-bottom: none;
}
.timeline-stamp {
  position: absolute;
  left: -2.35rem;
  top: 0.42rem;
  width: 22px;
  height: 22px;
  border-radius: 2px;
  background: var(--tan-brown);
  border: 1px solid var(--candle-orange);
  color: var(--candle-glow);
  font-family: var(--font-song);
  font-size: 0.6rem;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 0 6px rgba(217, 142, 60, 0.3);
  transform: rotate(-4deg);
}
.timeline-time {
  font-family: var(--font-hei);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--candle-glow);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.timeline-label {
  font-size: 0.78rem;
  color: var(--ash-muted);
  line-height: 1.55;
}
.episodes-panel {
  margin-bottom: 1.4rem;
  padding: 1rem 1.2rem 1.1rem;
  background: rgba(43, 29, 22, 0.35);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
}
.episodes-heading {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--bean-green-light);
  margin-bottom: 0.7rem;
}
.episodes-heading::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--candle-orange);
  margin-left: 0.6rem;
  vertical-align: middle;
}
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}
.episode-cell {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.6rem 0.7rem 0.65rem;
  background: rgba(26, 18, 12, 0.55);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  cursor: default;
}
.episode-cell:hover {
  transform: translateY(-3px);
  border-color: var(--line);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45), 0 0 12px rgba(217, 142, 60, 0.1);
}
.episode-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--candle-orange);
  letter-spacing: 0.08em;
}
.episode-title {
  font-family: var(--font-hei);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ash-white);
  letter-spacing: 0.05em;
}
.episode-summary {
  font-size: 0.72rem;
  color: var(--ash-muted);
  line-height: 1.6;
  text-align: justify;
  flex: 1;
}
.episode-duration {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--bean-green-light);
  margin-top: 0.15rem;
  padding-top: 0.25rem;
  border-top: 1px dotted var(--line-soft);
}
.comments-panel {
  margin-bottom: 1.4rem;
  padding: 1rem 1.2rem 1.1rem;
  background: rgba(43, 29, 22, 0.35);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
}
.comments-heading {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--bean-green-light);
  margin-bottom: 0.6rem;
}
.comments-heading::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--candle-orange);
  margin-left: 0.6rem;
  vertical-align: middle;
}
.comments-stack {
  position: relative;
  max-width: 860px;
}
.comment-note {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.6rem 0.85rem 0.65rem;
  background: var(--paper);
  color: var(--ink);
  border-radius: 1px;
  box-shadow:
    0 3px 10px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(26, 18, 12, 0.08);
  font-family: var(--font-song);
  transition: transform 0.22s ease;
}
.comment-note:nth-child(odd) {
  margin-left: 0;
  margin-right: 8%;
  transform: rotate(-0.6deg);
}
.comment-note:nth-child(even) {
  margin-left: 8%;
  margin-right: 0;
  transform: rotate(0.5deg);
}
.comment-note:nth-child(n/**/+2) {
  margin-top: -0.35rem;
}
.comment-note:hover {
  transform: rotate(0deg) translateY(-2px);
  z-index: 5;
}
.comment-note::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 12px;
  width: 28px;
  height: 3px;
  background: var(--candle-orange);
  opacity: 0.6;
}
.comment-nick {
  font-family: var(--font-hei);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--tan-brown);
  letter-spacing: 0.04em;
}
.comment-text {
  font-size: 0.76rem;
  line-height: 1.65;
  color: #3a2c22;
  text-align: justify;
}
.recommend-region {
  margin-bottom: 1.2rem;
  padding: 0.8rem 1rem 0.9rem;
  background: rgba(43, 29, 22, 0.3);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
}
.recommend-title {
  font-family: var(--font-song);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--candle-glow);
  padding-bottom: 0.4rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.recommend-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem 1rem;
}
.recommend-item {
  min-width: 0;
}
.recommend-item a[data-runtime="recommendation"] {
  display: block;
  color: var(--ash-white);
  text-decoration: none;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.2s, border-color 0.2s;
}
.recommend-item a[data-runtime="recommendation"]:hover {
  color: var(--candle-glow);
  border-color: var(--candle-orange);
}
.recommend-item a[data-runtime="recommendation"] img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 2px;
  background: var(--tan-mid);
  border: 1px solid var(--line-soft);
  margin-bottom: 0.35rem;
  transition: opacity 0.2s;
}
.recommend-item a[data-runtime="recommendation"]:hover img {
  opacity: 0.85;
}
.recommend-item a[data-runtime="recommendation"] [data-runtime="name"] {
  display: block;
  font-family: var(--font-hei);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.1rem;
}
.recommend-item a[data-runtime="recommendation"] [data-runtime="blurb"] {
  display: block;
  font-size: 0.68rem;
  color: var(--ash-muted);
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.site-footer {
  margin-top: 1.6rem;
  padding: 1.2rem 1.2rem 1.4rem;
  background: rgba(26, 18, 12, 0.85);
  border-top: 1px solid var(--line);
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
}
.footer-nav a {
  font-family: var(--font-song);
  font-size: 0.78rem;
  color: var(--ash-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer-nav a:hover {
  color: var(--candle-glow);
  border-bottom-color: var(--candle-orange);
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-family: var(--font-song);
  font-size: 0.78rem;
  color: var(--ash-muted);
  text-decoration: none;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--candle-glow);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 0.8rem;
  max-width: 720px;
}
.friend-links-label {
  font-family: var(--font-hei);
  font-size: 0.72rem;
  color: var(--bean-green-light);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
a.runtime-friend-link {
  font-family: var(--font-song);
  font-size: 0.72rem;
  color: var(--ash-muted);
  text-decoration: none;
  border-bottom: 1px dotted var(--line-soft);
  transition: color 0.2s, border-color 0.2s;
}
a.runtime-friend-link:hover {
  color: var(--candle-glow);
  border-bottom-color: var(--candle-orange);
}
.footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.68rem;
  color: rgba(185, 176, 160, 0.6);
  line-height: 1.6;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line-soft);
}
body.theater-mode .page-main {
  max-width: 100%;
}
body.theater-mode .player-shell {
  border-radius: 0;
  border-left: none;
  border-right: none;
}
body.theater-mode .header-inner, body.theater-mode .site-footer {
  opacity: 0.35;
}
body.lights-off .page-main > section:not(.hero-stage) {
  opacity: 0.12;
  transition: opacity 0.4s;
}
body.lights-off .hero-stage {
  position: relative;
  z-index: 50;
}
@media (max-width: 820px) {.movie-overview {
    grid-template-columns: minmax(0, 160px) minmax(0, 1fr);
    gap: 0.5rem 1rem;
    padding: 1rem 0.9rem 1.1rem;
  }
.poster-wrap {
    max-width: 160px;
  }
.movie-title {
    font-size: 1.35rem;
  }
.episodes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 560px) {html {
    font-size: 15px;
  }
.header-inner {
    padding: 0.5rem 0.8rem;
    gap: 0.6rem;
  }
.page-main {
    padding: 0 0.7rem 1.4rem;
  }
.movie-overview {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 0.9rem 0.8rem 1rem;
  }
.poster-wrap {
    grid-row: auto;
    max-width: 200px;
    margin: 0 auto;
  }
.overview-head {
    grid-column: 1;
  }
.movie-title {
    font-size: 1.2rem;
    text-align: center;
  }
.movie-tagline {
    text-align: center;
  }
.synopsis-columns {
    column-count: 1;
  }
.details-grid {
    grid-template-columns: 1fr;
  }
.episodes-grid {
    grid-template-columns: 1fr;
  }
.recommend-list {
    grid-template-columns: 1fr;
  }
.timeline-node {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
.timeline-time {
    white-space: normal;
  }
.cast-card {
    width: 58px;
  }
.cast-avatar {
    width: 42px;
    height: 42px;
  }
.comment-note:nth-child(odd) {
    margin-right: 5%;
    transform: rotate(-0.4deg);
  }
.comment-note:nth-child(even) {
    margin-left: 5%;
    transform: rotate(0.3deg);
  }
.footer-top {
    flex-direction: column;
    gap: 0.7rem;
  }
.player-controls {
    gap: 0.25rem 0.35rem;
    padding: 0.35rem 0.45rem;
  }
.player-controls button {
    font-size: 0.66rem;
    padding: 0.18rem 0.4rem;
  }
.ctl-progress {
    flex: 1 1 100%;
    order: -1;
  }
.ctl-volume {
    flex: 1 1 50px;
  }}
@media (max-width: 380px) {.cast-list {
    gap: 0.4rem 0.7rem;
  }
.cast-card {
    width: 52px;
  }
.cast-avatar {
    width: 38px;
    height: 38px;
  }
.player-controls button {
    font-size: 0.6rem;
    padding: 0.15rem 0.32rem;
  }}

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}
