:root {
  --soot: #1c1713;
  --soot-soft: #2a231d;
  --wall-teal: #46585a;
  --wall-teal-deep: #334244;
  --stove-orange: #d4601f;
  --stove-orange-deep: #a8440f;
  --stove-orange-glow: #f08a3c;
  --warm-gray: #b7a99a;
  --warm-gray-deep: #8f8172;
  --paper: #efe7db;
  --paper-dim: #ddd2c2;
  --ink: #241d17;
  --ink-soft: #4a3f35;
  --account-green: #3f6b52;
  --rule: rgba(70, 88, 90, 0.28);
  --rule-strong: rgba(28, 23, 19, 0.5);
  --font-hand: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
  --font-serif: "Songti SC", "STSong", "SimSun", "Noto Serif CJK SC", serif;
  --font-mono: "SFMono-Regular", "JetBrains Mono", "Consolas", "Courier New", monospace;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background:
    linear-gradient(180deg, #262019 0%, #1c1713 240px, #171310 100%);
  color: var(--paper);
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.55;
  font-feature-settings: "kern" 1;
  background-attachment: fixed;
}
h1, h2, p, ul, ol, dl, dd, dt {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
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, rgba(28, 23, 19, 0.97), rgba(28, 23, 19, 0.86));
  border-bottom: 1px solid var(--rule-strong);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  font-family: var(--font-hand);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.06em;
  color: var(--stove-orange-glow);
  text-decoration: none;
  text-shadow: 0 0 14px rgba(240, 138, 60, 0.35);
  white-space: nowrap;
}
a[data-contract="site-name"]:hover {
  color: #ffb066;
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
  min-width: 0;
  flex: 1 1 auto;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  padding: 3px 9px;
  color: var(--paper-dim);
  background: rgba(70, 88, 90, 0.35);
  border: 1px solid rgba(183, 169, 154, 0.22);
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.16s ease, color 0.16s ease;
}
a.runtime-category:hover {
  background: var(--stove-orange);
  border-color: var(--stove-orange-glow);
  color: #fff2e2;
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px 44px;
}
.block-title {
  font-family: var(--font-hand);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.08em;
  color: var(--paper);
  padding-left: 12px;
  margin-bottom: 12px;
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.block-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 4px;
  background: linear-gradient(180deg, var(--stove-orange), var(--stove-orange-deep));
  border-radius: 1px;
}
.block-title::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--rule);
  align-self: center;
}
.movie-overview {
  background:
    linear-gradient(180deg, rgba(70, 88, 90, 0.34) 0%, rgba(58, 74, 76, 0.18) 55%, rgba(28, 23, 19, 0) 100%),
    linear-gradient(180deg, #332c25 0%, #241e18 100%);
  border: 1px solid var(--rule-strong);
  border-top: none;
  border-radius: 0 0 3px 3px;
  padding: 18px 16px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.movie-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 70% at 12% 0%, rgba(240, 138, 60, 0.16), transparent 62%);
  pointer-events: none;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero-media {
  position: relative;
  align-self: start;
  width: 100%;
  max-width: 260px;
  border: 1px solid rgba(240, 138, 60, 0.4);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
}
.hero-poster {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.04);
}
.hero-steam {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -14%;
  height: 62%;
  pointer-events: none;
  background:
    radial-gradient(38% 60% at 22% 100%, rgba(255, 236, 214, 0.55), transparent 70%),
    radial-gradient(30% 55% at 48% 100%, rgba(255, 226, 196, 0.42), transparent 72%),
    radial-gradient(42% 62% at 76% 100%, rgba(255, 240, 222, 0.5), transparent 70%),
    radial-gradient(60% 40% at 50% 108%, rgba(240, 138, 60, 0.32), transparent 74%);
  filter: blur(9px);
  opacity: 0.85;
  animation: steam-drift 7.5s ease-in-out infinite alternate;
}
@keyframes steam-drift {
  0% { transform: translateY(6%) scaleY(0.95); opacity: 0.62; }
  100% { transform: translateY(-4%) scaleY(1.08); opacity: 0.92; }
}
.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}
.movie-title {
  font-family: var(--font-hand);
  font-weight: 800;
  font-size: clamp(26px, 4.2vw, 44px);
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: #fff3e4;
  text-shadow: 0 2px 22px rgba(212, 96, 31, 0.55), 0 1px 0 rgba(0, 0, 0, 0.5);
  margin: 0 0 4px;
}
.movie-tagline {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: clamp(14px, 1.9vw, 18px);
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--stove-orange-glow);
  padding-left: 12px;
  border-left: 3px solid var(--stove-orange);
  margin-bottom: 2px;
}
.movie-seo {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.85;
  color: var(--paper-dim);
  max-width: 60ch;
}
.player-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #0f0c0a;
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  overflow: hidden;
}
.movie-player {
  display: block;
  width: 100%;
  background: #000;
  max-width: none;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: linear-gradient(180deg, #241e19, #1a1512);
  border-top: 1px solid rgba(240, 138, 60, 0.22);
}
.player-btn {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  color: var(--paper-dim);
  background: rgba(70, 88, 90, 0.42);
  border: 1px solid rgba(183, 169, 154, 0.24);
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.player-btn:hover {
  background: var(--stove-orange-deep);
  border-color: var(--stove-orange-glow);
  color: #fff2e2;
}
.player-btn.is-active, .player-btn.play.is-active, .player-btn.mute.is-active, .player-btn.speed.is-active, .player-btn.pip.is-active, .player-btn.fullscreen.is-active, .player-btn.theater.is-active, .player-btn.light.is-active {
  background: var(--stove-orange);
  border-color: var(--stove-orange-glow);
  color: #fff6ec;
  box-shadow: 0 0 0 1px rgba(240, 138, 60, 0.4) inset;
}
.player-range {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  flex: 1 1 120px;
  min-width: 90px;
  background: rgba(183, 169, 154, 0.28);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--stove-orange-glow);
  border: 1px solid #ffd9b0;
  box-shadow: 0 0 6px rgba(240, 138, 60, 0.7);
}
.player-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 1px solid #ffd9b0;
  border-radius: 50%;
  background: var(--stove-orange-glow);
  box-shadow: 0 0 6px rgba(240, 138, 60, 0.7);
}
.player-range::-moz-range-track {
  height: 4px;
  background: rgba(183, 169, 154, 0.28);
  border-radius: 2px;
}
body.theater-mode .page-main {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
body.theater-mode .player-shell {
  border-radius: 0;
  border-left: none;
  border-right: none;
}
body.theater-mode .movie-overview > *:not(.player-shell) {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
body.lights-off {
  background: #080605;
}
body.lights-off .page-main > section:not(.movie-overview) {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
body.lights-off .player-shell {
  box-shadow: 0 0 0 1px rgba(240, 138, 60, 0.45), 0 0 90px rgba(212, 96, 31, 0.28);
}
.cast-block {
  position: relative;
  z-index: 1;
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 4px 9px;
  background: linear-gradient(180deg, rgba(70, 88, 90, 0.4), rgba(42, 35, 29, 0.7));
  border: 1px solid rgba(183, 169, 154, 0.18);
  border-radius: 2px;
  text-align: center;
  transition: border-color 0.16s ease, transform 0.16s ease;
}
.cast-card:hover {
  border-color: rgba(240, 138, 60, 0.65);
  transform: translateY(-2px);
}
.cast-avatar {
  width: 100%;
  max-width: 62px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 236, 214, 0.36), transparent 58%),
    linear-gradient(150deg, var(--wall-teal) 0%, var(--soot-soft) 72%);
  border: 2px solid rgba(240, 138, 60, 0.5);
  box-shadow: inset 0 -8px 14px rgba(0, 0, 0, 0.5);
  display: block;
  flex: 0 0 auto;
}
.cast-name {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--paper);
  white-space: nowrap;
}
.synopsis-block {
  position: relative;
  z-index: 1;
}
.synopsis-text {
  font-family: var(--font-serif);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--paper-dim);
  text-indent: 2em;
  margin-bottom: 8px;
  max-width: 78ch;
}
.synopsis-text:last-child {
  margin-bottom: 0;
}
.synopsis-text:first-of-type::first-letter {
  font-family: var(--font-hand);
  font-weight: 800;
  font-size: 2.5em;
  line-height: 1;
  float: left;
  margin: 0.06em 8px 0 0;
  color: var(--stove-orange-glow);
  text-indent: 0;
}
.episode-status {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 10px 14px;
  background: rgba(63, 107, 82, 0.2);
  border: 1px solid rgba(63, 107, 82, 0.55);
  border-left: 3px solid var(--account-green);
  border-radius: 2px;
}
.status-line {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.status-label {
  font-family: var(--font-serif);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
}
.status-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--stove-orange-glow);
  font-variant-numeric: tabular-nums;
}
.details-block {
  position: relative;
  z-index: 1;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: rgba(70, 88, 90, 0.16);
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
}
.details-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 7px 12px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  min-width: 0;
}
.details-row:nth-child(2n) {
  border-right: none;
}
.details-row:nth-last-child(-n + 2) {
  border-bottom: none;
}
.details-key {
  flex: 0 0 auto;
  font-family: var(--font-serif);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--wall-teal);
  filter: brightness(1.45);
  min-width: 4.5em;
}
.details-value {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--paper);
  min-width: 0;
  word-break: break-word;
}
.timeline-section {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px dashed rgba(240, 138, 60, 0.32);
}
.timeline-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 12px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--stove-orange) rgba(70, 88, 90, 0.3);
}
.timeline-track::-webkit-scrollbar {
  height: 7px;
}
.timeline-track::-webkit-scrollbar-track {
  background: rgba(70, 88, 90, 0.28);
  border-radius: 4px;
}
.timeline-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--stove-orange-deep), var(--stove-orange-glow));
  border-radius: 4px;
}
.timeline-node {
  flex: 0 0 auto;
  width: 168px;
  scroll-snap-align: start;
  padding: 11px 12px 12px;
  background: linear-gradient(180deg, rgba(70, 88, 90, 0.42), rgba(36, 30, 24, 0.85));
  border: 1px solid rgba(183, 169, 154, 0.2);
  border-top: 3px solid var(--stove-orange);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.timeline-node::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  width: 10px;
  height: 1px;
  background: rgba(240, 138, 60, 0.55);
}
.timeline-node:last-child::after {
  display: none;
}
.timeline-timecode {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--stove-orange-glow);
  font-variant-numeric: tabular-nums;
}
.timeline-label {
  font-family: var(--font-serif);
  font-size: 13px;
  line-height: 1.55;
  color: var(--paper-dim);
}
.episodes-section {
  margin-top: 26px;
}
.episode-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.episode-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "num title dur"
    "num summary summary";
  gap: 3px 12px;
  align-items: baseline;
  padding: 9px 12px 10px;
  background: rgba(70, 88, 90, 0.14);
  border: 1px solid var(--rule);
  border-left: 3px solid rgba(183, 169, 154, 0.4);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease;
}
.episode-item:hover {
  background: rgba(70, 88, 90, 0.3);
  border-left-color: var(--stove-orange);
}
.episode-item.is-active {
  background: rgba(212, 96, 31, 0.16);
  border-color: rgba(240, 138, 60, 0.6);
  border-left-color: var(--stove-orange-glow);
  box-shadow: inset 0 0 0 1px rgba(240, 138, 60, 0.2);
}
.episode-number {
  grid-area: num;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--paper);
  background: rgba(70, 88, 90, 0.55);
  padding: 3px 7px;
  border-radius: 2px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.episode-item.is-active .episode-number {
  background: var(--stove-orange);
  color: #fff6ec;
}
.episode-title {
  grid-area: title;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--paper);
}
.episode-duration {
  grid-area: dur;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--warm-gray);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.episode-summary {
  grid-area: summary;
  font-family: var(--font-serif);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--warm-gray);
  overflow-wrap: break-word;
}
.comments-section {
  margin-top: 26px;
}
.comment-stack {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.comment-bubble {
  max-width: 78%;
  padding: 9px 13px 10px;
  border-radius: 3px;
  position: relative;
  background: rgba(70, 88, 90, 0.28);
  border: 1px solid rgba(183, 169, 154, 0.22);
}
.comment-nickname {
  display: block;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--stove-orange-glow);
  margin-bottom: 4px;
}
.comment-text {
  font-family: var(--font-serif);
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--paper-dim);
}
.comment-left {
  align-self: flex-start;
  border-left: 3px solid var(--stove-orange);
  border-top-left-radius: 2px;
}
.comment-left::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 14px;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-right-color: rgba(70, 88, 90, 0.55);
  border-left: none;
}
.comment-right {
  align-self: flex-end;
  background: rgba(63, 107, 82, 0.24);
  border-color: rgba(63, 107, 82, 0.55);
  border-right: 3px solid var(--account-green);
}
.comment-right::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 14px;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left-color: rgba(63, 107, 82, 0.6);
  border-right: none;
}
.comment-right .comment-nickname {
  color: #8fd0a8;
}
.recommend-region {
  margin-top: 24px;
}
.region-1, .region-2, .region-3, .region-4 {
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.recommend-grid {
  display: grid;
  gap: 10px;
  align-items: start;
}
.region-1 .recommend-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.region-2 .recommend-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.region-3 .recommend-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.region-4 .recommend-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.region-4 .recommend-card {
  gap: 5px;
  padding: 7px 7px 8px;
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 8px 9px;
  background: rgba(70, 88, 90, 0.18);
  border: 1px solid var(--rule);
  border-radius: 2px;
  text-decoration: none;
  color: var(--paper);
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
  align-self: start;
}
a.recommend-card:hover {
  background: rgba(212, 96, 31, 0.14);
  border-color: rgba(240, 138, 60, 0.62);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  background: #0f0c0a;
  border: 1px solid rgba(0, 0, 0, 0.5);
  display: block;
}
.region-4 [data-runtime="recommendation"] img {
  aspect-ratio: 3 / 4;
}
.recommend-name {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--paper);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recommend-blurb {
  font-family: var(--font-serif);
  font-size: 12px;
  line-height: 1.55;
  color: var(--warm-gray);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 34px;
  background: linear-gradient(180deg, #1a1512, #0f0c0a);
  border-top: 2px solid var(--stove-orange-deep);
  padding: 20px 16px 26px;
}
.friend-links {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}
.friend-links-label {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--stove-orange-glow);
  padding-right: 6px;
  border-right: 1px solid var(--rule);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-family: var(--font-serif);
  font-size: 12.5px;
  color: var(--warm-gray);
  text-decoration: none;
  padding: 2px 4px;
  border-bottom: 1px dotted rgba(183, 169, 154, 0.4);
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: var(--stove-orange-glow);
  border-bottom-color: var(--stove-orange-glow);
}
.footer-meta {
  max-width: 1180px;
  margin: 14px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-family: var(--font-serif);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--wall-teal);
  filter: brightness(1.5);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--stove-orange-glow);
  border-bottom-color: var(--stove-orange-glow);
}
.footer-disclaimer {
  max-width: 1180px;
  margin: 14px auto 0;
  font-family: var(--font-serif);
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(183, 169, 154, 0.62);
}
@media (max-width: 1024px) {.hero {
    grid-template-columns: minmax(0, 210px) minmax(0, 1fr);
    gap: 16px;
  }
.hero-media {
    max-width: 210px;
  }
.cast-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
.region-4 .recommend-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.movie-overview {
    padding: 14px 12px 18px;
  }
.hero {
    grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
  }
.hero-media {
    max-width: 180px;
  }
.cast-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.cast-avatar {
    max-width: 52px;
  }
.episode-list {
    grid-template-columns: minmax(0, 1fr);
  }
.region-1 .recommend-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.region-2 .recommend-grid, .region-3 .recommend-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.region-4 .recommend-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.comment-bubble {
    max-width: 88%;
  }}
@media (max-width: 640px) {body {
    font-size: 14px;
  }
.header-inner {
    padding: 8px 12px;
    gap: 10px;
  }
.page-main {
    padding: 0 12px 32px;
  }
.hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
.hero-media {
    max-width: 62%;
    margin: 0 auto;
  }
.hero-copy {
    padding-top: 0;
  }
.movie-title {
    font-size: 26px;
  }
.movie-tagline {
    font-size: 14px;
  }
.cast-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
.details-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.details-row, .details-row:nth-child(2n), .details-row:nth-last-child(-n + 2) {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
.details-row:last-child {
    border-bottom: none;
  }
.episode-item {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "num title"
      "summary summary"
      "dur dur";
  }
.episode-duration {
    text-align: right;
  }
.comment-bubble {
    max-width: 94%;
  }
.comment-right {
    align-self: flex-start;
  }
.recommend-grid, .region-1 .recommend-grid, .region-2 .recommend-grid, .region-3 .recommend-grid, .region-4 .recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.region-4 [data-runtime="recommendation"] img {
    aspect-ratio: 16 / 9;
  }
.player-controls {
    gap: 5px;
    padding: 7px 8px;
  }
.player-btn {
    font-size: 11px;
    padding: 4px 8px;
  }
.player-range {
    flex: 1 1 100%;
  }}
@media (max-width: 420px) {.cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-grid, .region-1 .recommend-grid, .region-2 .recommend-grid, .region-3 .recommend-grid, .region-4 .recommend-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-media {
    max-width: 78%;
  }}

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}
