:root {
  --bg-deep: #0b0908;
  --bg-warm: #14100d;
  --bg-panel: #1a1512;
  --bg-panel-2: #201914;
  --ink: #f2e6d8;
  --ink-dim: #b9a893;
  --ink-faint: #7d6d5c;
  --amber: #e08a3c;
  --amber-hot: #f2a44f;
  --amber-deep: #a85c1f;
  --indigo: #232a44;
  --indigo-soft: #2c3556;
  --line: rgba(224, 138, 60, 0.18);
  --line-soft: rgba(185, 168, 147, 0.12);
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
  --serif: "Songti SC", "STSong", "Noto Serif SC", serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(1200px 700px at 78% -8%, rgba(224, 138, 60, 0.14), transparent 62%),
    radial-gradient(900px 620px at 8% 4%, rgba(44, 53, 86, 0.5), transparent 66%),
    linear-gradient(180deg, #0b0908 0%, #120e0b 42%, #0c0a09 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--amber-hot);
  text-decoration: none;
}
a:hover, a:focus-visible {
  text-decoration: underline;
}
h1, h2, h3, p, dl, dd, dt, ol, ul {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
button, input {
  font: inherit;
  color: inherit;
}
video {
  display: block;
  max-width: 100%;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(11, 9, 8, 0.96), rgba(11, 9, 8, 0.82));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 18px;
}
a[data-contract="site-name"] {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--amber-hot);
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(224, 138, 60, 0.45);
}
a[data-contract="site-name"]:hover {
  color: #ffc178;
  text-decoration: none;
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--ink-dim);
  background: rgba(32, 25, 20, 0.72);
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--amber-hot);
  border-color: rgba(224, 138, 60, 0.55);
  background: rgba(224, 138, 60, 0.12);
  text-decoration: none;
}
.movie-detail-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px 56px;
}
.hero-backdrop {
  position: relative;
  margin: 20px 0 0;
  padding: 22px 20px 24px;
  border: 1px solid var(--line);
  border-radius: 4px 26px 4px 26px;
  background:
    radial-gradient(760px 420px at 82% 8%, rgba(242, 164, 79, 0.2), transparent 64%),
    radial-gradient(560px 420px at 6% 92%, rgba(35, 42, 68, 0.72), transparent 70%),
    linear-gradient(155deg, #1c1510 0%, #130f0c 58%, #0d0b09 100%);
  box-shadow:
    inset 0 0 90px rgba(0, 0, 0, 0.72),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 50%, transparent 42%, rgba(0, 0, 0, 0.68) 100%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.014) 0 2px, transparent 2px 7px);
  mix-blend-mode: multiply;
}
.hero-backdrop > * {
  position: relative;
  z-index: 1;
}
.hero-poster-wrap {
  float: none;
  width: 168px;
  margin: 0 0 14px;
  border-radius: 3px 22px 3px 22px;
  overflow: hidden;
  border: 1px solid rgba(224, 138, 60, 0.32);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.72), 0 0 0 6px rgba(224, 138, 60, 0.05);
}
.hero-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.06) brightness(0.94);
}
.hero-copy {
  min-width: 0;
  margin-bottom: 16px;
}
.movie-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.18;
  color: #f7e7d3;
  text-shadow: 0 0 26px rgba(224, 138, 60, 0.42), 0 2px 0 rgba(0, 0, 0, 0.5);
}
.movie-tagline {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 0.92rem;
  letter-spacing: 0.22em;
  color: var(--amber);
}
.movie-seo {
  margin-top: 10px;
  max-width: 62ch;
  font-size: 0.86rem;
  line-height: 1.62;
  color: var(--ink-dim);
}
.player-shell {
  margin: 0 0 20px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 3px 18px 3px 18px;
  background: linear-gradient(180deg, #191310, #100d0b);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8), 0 10px 26px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.player-shell video {
  border-radius: 2px 12px 2px 12px;
  background: #000;
  outline: none;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 6px 4px;
  border-top: 1px solid var(--line-soft);
}
.player-btn {
  flex: 0 0 auto;
  padding: 4px 11px;
  border: 1px solid rgba(224, 138, 60, 0.3);
  border-radius: 999px;
  background: rgba(35, 42, 68, 0.42);
  color: var(--ink-dim);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.player-btn:hover, .player-btn:focus-visible {
  color: var(--amber-hot);
  border-color: rgba(242, 164, 79, 0.68);
  background: rgba(224, 138, 60, 0.16);
}
.player-range {
  flex: 1 1 120px;
  min-width: 92px;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber-deep), rgba(125, 109, 92, 0.4));
  cursor: pointer;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber-hot);
  border: 2px solid #1a1512;
  box-shadow: 0 0 10px rgba(242, 164, 79, 0.7);
}
.player-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 2px solid #1a1512;
  border-radius: 50%;
  background: var(--amber-hot);
}
.player-shell.is-theater {
  border-color: rgba(242, 164, 79, 0.6);
  background: linear-gradient(180deg, #221a13, #0d0b09);
  box-shadow: 0 0 0 1px rgba(242, 164, 79, 0.28), 0 18px 48px rgba(0, 0, 0, 0.85);
}
.player-shell.is-lights-off {
  background: #060505;
  border-color: rgba(224, 138, 60, 0.14);
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.98);
}
.player-shell.is-lights-off .player-controls {
  opacity: 0.55;
}
.cast-strip {
  margin: 0 0 18px;
  padding: 0;
}
.cast-heading {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 8px;
}
.cast-heading::after {
  content: "";
  display: inline-block;
  width: 46px;
  height: 1px;
  margin-left: 10px;
  vertical-align: middle;
  background: linear-gradient(90deg, rgba(224, 138, 60, 0.7), transparent);
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: flex-start;
}
.cast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 62px;
  flex: 0 0 auto;
}
.cast-avatar {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(224, 138, 60, 0.4);
  box-shadow: 0 0 0 3px rgba(224, 138, 60, 0.08), inset 0 0 22px rgba(0, 0, 0, 0.6);
  background: #1c1510;
}
.cast-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) brightness(0.92) contrast(1.05);
}
.cast-name {
  font-size: 0.7rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  text-align: center;
  white-space: nowrap;
}
.synopsis-block, .episode-status, .details-block {
  margin-bottom: 16px;
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
}
.synopsis-heading, .status-heading, .details-heading {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 8px;
}
.synopsis-body {
  columns: 1;
  column-gap: 26px;
}
.synopsis-para {
  font-size: 0.85rem;
  line-height: 1.66;
  color: var(--ink-dim);
  margin-bottom: 8px;
  break-inside: avoid;
}
.synopsis-para:last-child {
  margin-bottom: 0;
  color: var(--ink);
}
.status-line {
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
}
.status-total, .status-current {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--amber-hot);
  padding: 0 2px;
  text-shadow: 0 0 14px rgba(242, 164, 79, 0.55);
}
.details-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.details-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(185, 168, 147, 0.14);
}
.details-row:last-child {
  border-bottom: none;
}
.details-key {
  flex: 0 0 84px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}
.details-value {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.84rem;
  color: var(--ink);
  line-height: 1.5;
}
.timeline-section {
  margin: 34px 0 0;
  padding: 18px 18px 8px;
  border-radius: 3px 22px 3px 22px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(28, 21, 16, 0.85), rgba(13, 11, 9, 0.92));
}
.timeline-heading {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 12px;
}
.timeline-list {
  position: relative;
  padding-left: 14px;
  border-left: 1px solid rgba(224, 138, 60, 0.28);
}
.timeline-node {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  padding: 6px 0 8px 6px;
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: -19px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(224, 138, 60, 0.14), 0 0 12px rgba(242, 164, 79, 0.7);
}
.timeline-time {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--amber-hot);
  padding: 1px 6px;
  border: 1px solid rgba(224, 138, 60, 0.28);
  border-radius: 999px;
  background: rgba(224, 138, 60, 0.07);
}
.timeline-label {
  flex: 1 1 220px;
  min-width: 0;
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--ink-dim);
}
.episodes-section {
  margin: 34px 0 0;
}
.episodes-heading {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 12px;
}
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 3px 16px 3px 16px;
  background: linear-gradient(160deg, rgba(28, 21, 16, 0.9), rgba(14, 11, 9, 0.94));
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.episode-card:hover {
  border-color: rgba(224, 138, 60, 0.45);
  background: linear-gradient(160deg, rgba(38, 28, 20, 0.95), rgba(16, 13, 10, 0.96));
}
.episode-number {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}
.episode-title {
  font-family: var(--serif);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  line-height: 1.3;
}
.episode-summary {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--ink-dim);
}
.episode-duration {
  margin-top: 2px;
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  padding: 1px 7px;
  border-radius: 999px;
  border: 1px solid rgba(185, 168, 147, 0.16);
}
.episode-card-current {
  grid-column: span 1;
  border-color: rgba(242, 164, 79, 0.72);
  background:
    radial-gradient(120% 90% at 84% 6%, rgba(242, 164, 79, 0.22), transparent 62%),
    linear-gradient(160deg, #2a1e14, #140f0b);
  box-shadow: 0 0 0 1px rgba(242, 164, 79, 0.24), 0 12px 30px rgba(0, 0, 0, 0.6);
  transform: scale(1.035);
  z-index: 2;
}
.episode-card-current .episode-number {
  color: var(--amber-hot);
}
.episode-card-current .episode-title {
  font-size: 1.06rem;
  color: #ffd9a6;
}
.episode-card-current .episode-summary {
  color: var(--ink);
}
.episode-card-current .episode-duration {
  color: var(--amber);
  border-color: rgba(242, 164, 79, 0.5);
}
.comments-section {
  margin: 34px 0 0;
}
.comments-heading {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 14px;
}
.comments-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
.comment-note {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 11px 13px 13px;
  border-radius: 2px 14px 2px 14px;
  background: linear-gradient(168deg, #201913, #17110d);
  border: 1px solid rgba(185, 168, 147, 0.14);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}
.comment-note::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 42px;
  height: 11px;
  transform: translateX(-50%) rotate(-2.5deg);
  background: rgba(224, 138, 60, 0.22);
  border-radius: 1px;
}
.comment-note:nth-child(2n) {
  transform: rotate(-0.7deg);
}
.comment-note:nth-child(3n) {
  transform: rotate(0.8deg);
}
.comment-note:nth-child(1) { transform: rotate(-1.1deg) translateY(4px); }
.comment-note:nth-child(2) { transform: rotate(0.6deg) translateY(-3px); }
.comment-note:nth-child(3) { transform: rotate(-0.4deg) translateY(7px); }
.comment-note:nth-child(4) { transform: rotate(1.2deg) translateY(-6px); }
.comment-note:nth-child(5) { transform: rotate(-0.9deg) translateY(2px); }
.comment-note:nth-child(6) { transform: rotate(0.5deg) translateY(-4px); }
.comment-note:nth-child(7) { transform: rotate(-1.3deg) translateY(5px); }
.comment-nickname {
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--amber);
}
.comment-text {
  font-size: 0.79rem;
  line-height: 1.58;
  color: var(--ink-dim);
}
.recommend-region {
  margin: 30px 0 0;
  padding: 14px 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 3px 20px 3px 20px;
  background: linear-gradient(180deg, rgba(26, 20, 16, 0.86), rgba(11, 9, 8, 0.94));
}
.recommend-region[data-recommendation-region="2"] {
  border-color: rgba(44, 53, 86, 0.55);
  background: linear-gradient(180deg, rgba(20, 22, 34, 0.7), rgba(11, 9, 8, 0.94));
}
.recommend-region[data-recommendation-region="3"] {
  border-radius: 3px 20px 3px 20px;
  border-color: rgba(224, 138, 60, 0.22);
}
.recommend-heading {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--amber);
  margin-bottom: 12px;
}
.recommend-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.recommend-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 1px solid rgba(185, 168, 147, 0.13);
  border-radius: 3px 14px 3px 14px;
  background: linear-gradient(165deg, #1d1712, #120e0b);
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
a.recommend-card:hover, a.recommend-card:focus-visible {
  border-color: rgba(242, 164, 79, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(242, 164, 79, 0.18);
  text-decoration: none;
}
.recommend-card[data-runtime="recommendation"] img, .recommend-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 2px 10px 2px 10px;
  filter: brightness(0.9) contrast(1.05) saturate(1.03);
}
.recommend-name {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.recommend-blurb {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--ink-faint);
}
.site-footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(224, 138, 60, 0.08), transparent 70%),
    linear-gradient(180deg, #0d0b09, #080706);
  padding: 22px 18px 30px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  max-width: 1180px;
  margin: 0 auto 12px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--amber);
  text-decoration: none;
}
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: #ffc178;
  text-decoration: underline;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  max-width: 1180px;
  margin: 0 auto 14px;
  padding: 10px 0 0;
  border-top: 1px dashed rgba(185, 168, 147, 0.14);
}
.friend-label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 0.75rem;
  color: var(--ink-dim);
  text-decoration: none;
  white-space: nowrap;
  padding: 2px 8px;
  border: 1px solid rgba(185, 168, 147, 0.14);
  border-radius: 999px;
  transition: color 0.16s ease, border-color 0.16s ease;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--amber-hot);
  border-color: rgba(224, 138, 60, 0.5);
  text-decoration: none;
}
.footer-disclaimer {
  max-width: 1180px;
  margin: 0 auto;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--ink-faint);
  border-top: 1px solid rgba(185, 168, 147, 0.1);
  padding-top: 12px;
}
video.is-playing {
  box-shadow: 0 0 0 1px rgba(242, 164, 79, 0.3);
}
video.is-muted {
  opacity: 0.94;
}
.player-shell.is-theater .player-controls {
  border-top-color: rgba(242, 164, 79, 0.3);
}
.player-btn.play, .player-btn.pause, .player-btn.mute, .player-btn.speed, .player-btn.pip, .player-btn.fullscreen, .player-btn.theater, .player-btn.light, .player-btn.click, .player-btn.x {
  border-color: rgba(242, 164, 79, 0.45);
  color: var(--amber-hot);
}
.player-range.progress, .player-range.volume, .player-range.input, .player-range.timeupdate {
  accent-color: var(--amber);
}
@media (min-width: 700px) {.movie-detail-main {
    padding: 0 26px 64px;
  }
.hero-backdrop {
    padding: 26px 26px 28px;
  }
.hero-poster-wrap {
    float: left;
    width: 186px;
    margin: 2px 22px 12px 0;
  }
.hero-copy {
    margin-bottom: 18px;
  }
.hero-backdrop::after {
    content: "";
    display: table;
    clear: both;
  }
.details-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 26px;
  }
.details-row:nth-last-child(2) {
    border-bottom: none;
  }
.synopsis-body {
    columns: 2;
  }
.timeline-list {
    padding-left: 18px;
  }}
@media (max-width: 900px) {.episodes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comments-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-card-current {
    transform: none;
  }}
@media (max-width: 600px) {body {
    font-size: 14px;
  }
.header-inner {
    flex-wrap: wrap;
    gap: 8px;
    padding: 9px 14px;
  }
.category-nav {
    justify-content: flex-start;
  }
.movie-detail-main {
    padding: 0 14px 44px;
  }
.hero-backdrop {
    margin-top: 14px;
    padding: 16px 14px 18px;
    border-radius: 3px 18px 3px 18px;
  }
.hero-poster-wrap {
    width: 132px;
    margin-bottom: 12px;
  }
.movie-title {
    font-size: 1.5rem;
  }
.movie-tagline {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
  }
.player-shell {
    padding: 6px;
    border-radius: 3px 14px 3px 14px;
  }
.player-controls {
    gap: 5px;
  }
.player-btn {
    padding: 4px 9px;
    font-size: 0.72rem;
  }
.cast-item {
    width: 56px;
  }
.cast-avatar {
    width: 52px;
    height: 52px;
  }
.details-key {
    flex-basis: 72px;
  }
.episodes-grid {
    grid-template-columns: 1fr;
  }
.comments-stack {
    grid-template-columns: 1fr;
    gap: 16px;
  }
.comment-note {
    transform: none !important;
  }
.recommend-row, .recommend-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-section, .recommend-region {
    padding: 14px 12px;
    border-radius: 3px 16px 3px 16px;
  }}
@media (max-width: 380px) {.recommend-row, .recommend-column {
    grid-template-columns: 1fr;
  }
.cast-item {
    width: 50px;
  }
.cast-avatar {
    width: 46px;
    height: 46px;
  }}
@media (prefers-reduced-motion: reduce) {* {
    transition: none !important;
    animation: none !important;
  }
html {
    scroll-behavior: auto;
  }}

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}
