*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, p, figure, ul, ol, li, table, tbody, tr, th, td, nav, header, footer, main, section, article, div, span, a, img, video, button, input, select {
  margin: 0;
  padding: 0;
  border: 0;
}
:root {
  --deep: #060b1a;
  --deep-2: #0a1226;
  --deep-3: #0e1a33;
  --teal: #10323a;
  --teal-soft: #17454d;
  --cyan: #4fb6c4;
  --cyan-dim: #2d7e8c;
  --skin: #e8b98c;
  --skin-soft: #f0cfa4;
  --warm: #e9a860;
  --gold: #f2b45c;
  --gold-soft: #ffd08a;
  --ink: #dfe7f2;
  --ink-dim: #8fa0ba;
  --ink-faint: #5c6b85;
  --rule: rgba(120, 160, 190, 0.16);
  --rule-soft: rgba(120, 160, 190, 0.08);
  --surface: #0b1528;
  --surface-2: #0d1a30;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  background:
    radial-gradient(1100px 620px at 18% -6%, rgba(23, 69, 77, 0.55), transparent 62%),
    radial-gradient(900px 560px at 88% 4%, rgba(11, 33, 58, 0.85), transparent 60%),
    linear-gradient(180deg, #050a16 0%, #060c1c 42%, #04080f 100%);
  background-color: var(--deep);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
}
img, video {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol { list-style: none; }
a {
  color: inherit;
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
  background: none;
  letter-spacing: inherit;
}
button { cursor: pointer; }
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(6, 11, 26, 0.96), rgba(6, 11, 26, 0.82));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold-soft);
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(242, 180, 92, 0.28);
}
a[data-contract="site-name"]:hover {
  color: #fff0d2;
}
.category-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink-dim);
  text-decoration: none;
  padding: 3px 9px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(16, 50, 58, 0.28);
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
a.runtime-category:hover {
  color: var(--gold-soft);
  border-color: rgba(242, 180, 92, 0.5);
  background: rgba(242, 180, 92, 0.1);
}
.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 20px 44px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.movie-overview {
  position: relative;
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  grid-template-areas:
    "poster title"
    "poster player"
    "cast cast"
    "synopsis synopsis"
    "status status"
    "details details";
  gap: 14px 22px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background:
    radial-gradient(620px 320px at 8% 0%, rgba(23, 69, 77, 0.6), transparent 70%),
    linear-gradient(160deg, var(--surface-2) 0%, #070d1d 100%);
  box-shadow: 0 22px 60px -34px rgba(0, 0, 0, 0.95), inset 0 1px 0 rgba(120, 190, 210, 0.06);
  overflow: hidden;
}
.movie-overview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(102deg, transparent 46%, rgba(160, 220, 235, 0.055) 47%, transparent 49%),
    linear-gradient(88deg, transparent 68%, rgba(160, 220, 235, 0.045) 69%, transparent 71%);
}
.overview-poster-wrap {
  grid-area: poster;
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(120, 190, 210, 0.2);
  box-shadow: 0 18px 44px -22px rgba(0, 0, 0, 0.95);
}
.overview-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}
.overview-poster-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 40, 50, 0.34) 0%, rgba(6, 11, 26, 0) 38%, rgba(6, 11, 26, 0.55) 100%),
    repeating-linear-gradient(178deg, rgba(180, 235, 245, 0.06) 0 2px, transparent 2px 9px);
  mix-blend-mode: screen;
}
.overview-title-group {
  grid-area: title;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
  min-width: 0;
}
.overview-title {
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: #f3f7ff;
  text-shadow: 0 0 30px rgba(79, 182, 196, 0.22), 0 0 60px rgba(242, 180, 92, 0.12);
}
.overview-tagline {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--gold-soft);
  padding-left: 10px;
  border-left: 2px solid rgba(242, 180, 92, 0.55);
  line-height: 1.5;
}
.overview-player-wrap {
  grid-area: player;
  position: relative;
  width: 100%;
  min-width: 0;
  border-radius: 3px;
  overflow: hidden;
  background: #02060f;
  border: 1px solid rgba(120, 190, 210, 0.18);
}
.overview-player-wrap video {
  display: block;
  width: 100%;
  background: #01040b;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(13, 26, 48, 0.95), rgba(7, 13, 29, 0.95));
  border-top: 1px solid var(--rule);
}
.ctrl-btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 4px 10px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: rgba(16, 50, 58, 0.4);
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.ctrl-btn:hover {
  color: var(--gold-soft);
  border-color: rgba(242, 180, 92, 0.45);
  background: rgba(242, 180, 92, 0.1);
}
.ctrl-progress {
  flex: 1 1 180px;
  min-width: 120px;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(90deg, var(--cyan-dim), rgba(45, 126, 140, 0.18));
  border-radius: 2px;
  cursor: pointer;
}
.ctrl-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  box-shadow: 0 0 10px rgba(242, 180, 92, 0.7);
}
.ctrl-progress::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(242, 180, 92, 0.7);
}
.ctrl-volume {
  flex: 0 0 74px;
  width: 74px;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(45, 126, 140, 0.28);
  border-radius: 2px;
  cursor: pointer;
}
.ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  border: none;
}
.ctrl-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: var(--cyan);
}
.ctrl-speed {
  font-size: 11px;
  padding: 3px 6px;
  color: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: rgba(13, 26, 48, 0.9);
  cursor: pointer;
}
.ctrl-speed option {
  background: #0a1226;
  color: var(--ink);
}
.overview-player-wrap.player-active {
  border-color: rgba(79, 182, 196, 0.55);
  box-shadow: 0 0 0 1px rgba(79, 182, 196, 0.2), 0 22px 50px -30px rgba(79, 182, 196, 0.5);
}
.ctrl-play.is-playing {
  color: var(--gold-soft);
  border-color: rgba(242, 180, 92, 0.5);
  background: rgba(242, 180, 92, 0.12);
}
.ctrl-mute.is-muted {
  color: #ff9a8a;
  border-color: rgba(255, 154, 138, 0.45);
  background: rgba(255, 154, 138, 0.1);
}
.ctrl-btn.is-active {
  color: var(--gold-soft);
  border-color: rgba(242, 180, 92, 0.55);
  background: rgba(242, 180, 92, 0.14);
}
.overview-player-wrap.theater-mode {
  grid-column: 1 / -1;
  width: 100%;
}
body.lights-off {
  background: #01030a;
}
body.lights-off .site-header, body.lights-off .site-footer {
  opacity: 0.35;
}
body.lights-off .movie-overview {
  background: #03060f;
}
.cast-section {
  grid-area: cast;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--rule-soft);
  min-width: 0;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--cyan);
  text-transform: uppercase;
}
.cast-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.cast-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  min-width: 0;
}
.cast-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--teal);
  border: 1px solid rgba(120, 190, 210, 0.2);
  
  clip-path: polygon(
    6% 0%,
    100% 2%,
    97% 26%,
    100% 52%,
    95% 78%,
    99% 100%,
    54% 97%,
    30% 100%,
    0% 96%,
    3% 70%,
    0% 44%,
    4% 20%
  );
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
}
.cast-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05) brightness(0.95);
}
.cast-name {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
}
.cast-role {
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
  line-height: 1.3;
}
.synopsis-section {
  grid-area: synopsis;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--rule-soft);
  min-width: 0;
}
.synopsis-body {
  columns: 2;
  column-gap: 26px;
  column-rule: 1px solid var(--rule-soft);
}
.synopsis-p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.72;
  letter-spacing: -0.005em;
  color: #b9c6da;
  margin-bottom: 9px;
  break-inside: avoid;
}
.synopsis-p:last-child {
  margin-bottom: 0;
}
.episode-status {
  grid-area: status;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
}
.status-item {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
  padding: 3px 10px;
  border: 1px solid rgba(242, 180, 92, 0.34);
  border-radius: 999px;
  background: rgba(242, 180, 92, 0.08);
  white-space: nowrap;
}
.details-section {
  grid-area: details;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--rule-soft);
  min-width: 0;
}
.details-table {
  width: 100%;
  font-size: 11.5px;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.details-table tr {
  border-bottom: 1px solid var(--rule-soft);
}
.details-table tr:last-child {
  border-bottom: none;
}
.details-table th, .details-table td {
  text-align: left;
  vertical-align: top;
  padding: 3px 10px 3px 0;
}
.details-table th {
  width: 78px;
  font-weight: 400;
  color: var(--ink-faint);
  white-space: nowrap;
}
.details-table td {
  font-weight: 300;
  color: #b9c6da;
}
.section-heading {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #eef4ff;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-heading::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(79, 182, 196, 0.4), transparent);
}
.timeline-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.timeline-strip {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 14px 4px 16px;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  scrollbar-width: thin;
  scrollbar-color: var(--cyan-dim) transparent;
  -webkit-overflow-scrolling: touch;
}
.timeline-strip::-webkit-scrollbar {
  height: 6px;
}
.timeline-strip::-webkit-scrollbar-thumb {
  background: var(--cyan-dim);
  border-radius: 3px;
}
.timeline-strip::-webkit-scrollbar-track {
  background: rgba(120, 190, 210, 0.07);
}
.timeline-track {
  display: flex;
  gap: 0;
  align-items: flex-start;
  min-width: 100%;
  position: relative;
  padding: 0 4px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 9px;
  height: 1px;
  background: linear-gradient(90deg, rgba(79, 182, 196, 0.15), rgba(79, 182, 196, 0.45), rgba(79, 182, 196, 0.15));
}
.timeline-node {
  position: relative;
  flex: 0 0 148px;
  width: 148px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding-right: 14px;
}
.node-dot {
  position: relative;
  width: 19px;
  height: 19px;
  border-radius: 50% 50% 50% 50% / 58% 58% 42% 42%;
  background: radial-gradient(circle at 34% 28%, rgba(160, 225, 235, 0.9), var(--cyan-dim) 52%, #0d2b33 100%);
  border: 1px solid rgba(120, 200, 215, 0.5);
  box-shadow: 0 0 12px rgba(79, 182, 196, 0.35);
  flex: none;
}
.node-timecode {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cyan);
  white-space: nowrap;
}
.node-label {
  font-size: 11.5px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink-dim);
  max-width: 132px;
}
.timeline-node-active .node-dot {
  background: radial-gradient(circle at 34% 28%, #fff2d6, var(--gold) 48%, #8a5410 100%);
  border-color: rgba(255, 208, 138, 0.85);
  box-shadow: 0 0 16px rgba(242, 180, 92, 0.65), 0 0 32px rgba(242, 180, 92, 0.3);
}
.timeline-node-active .node-timecode {
  color: var(--gold-soft);
}
.timeline-node-active .node-label {
  color: #e6d6ba;
  font-weight: 400;
}
.episodes-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.episode-grid {
  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: 2px;
  padding: 9px 10px 10px;
  min-height: 92px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: linear-gradient(158deg, rgba(14, 26, 51, 0.85), rgba(7, 13, 29, 0.9));
  overflow: hidden;
  transition: border-color 0.16s ease, background 0.16s ease;
}
.episode-card:hover, .episode-card:focus-within {
  border-color: rgba(79, 182, 196, 0.5);
  background: linear-gradient(158deg, rgba(18, 40, 58, 0.92), rgba(8, 16, 34, 0.95));
}
.ep-number {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cyan);
  white-space: nowrap;
}
.ep-title {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: #eaf1fb;
}
.ep-duration {
  font-size: 10.5px;
  font-weight: 200;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
  margin-top: auto;
}
.ep-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 11px 12px;
  background: linear-gradient(160deg, rgba(8, 30, 40, 0.97), rgba(4, 9, 20, 0.98));
  border-left: 2px solid rgba(79, 182, 196, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.episode-card:hover .ep-overlay, .episode-card:focus-within .ep-overlay, .episode-card:active .ep-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ep-summary {
  font-size: 11.5px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: #cbd8ea;
}
.episode-card-current {
  border-color: rgba(242, 180, 92, 0.6);
  background: linear-gradient(158deg, rgba(52, 40, 18, 0.7), rgba(10, 16, 32, 0.95));
  box-shadow: inset 0 0 0 1px rgba(242, 180, 92, 0.16), 0 10px 30px -20px rgba(242, 180, 92, 0.6);
}
.episode-card-current .ep-number {
  color: var(--gold-soft);
}
.episode-card-current .ep-title {
  color: #fff3dd;
}
.comments-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.comments-masonry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.comments-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.comment-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 11px 13px 12px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background:
    linear-gradient(150deg, rgba(16, 50, 58, 0.34), rgba(7, 13, 29, 0.9));
  border-left: 2px solid rgba(79, 182, 196, 0.35);
}
.comment-text {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.66;
  letter-spacing: -0.005em;
  color: #c4d1e4;
}
.comment-author {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
  white-space: nowrap;
}
.comment-author::before {
  content: "— ";
  color: var(--cyan-dim);
}
.recommend-region {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--rule-soft);
  min-width: 0;
}
.recommend-heading {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #eef4ff;
  line-height: 1.25;
}
.recommend-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
  align-items: start;
}
.recommend-item {
  min-width: 0;
}
a[data-runtime="recommendation"] {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: linear-gradient(160deg, rgba(14, 26, 51, 0.7), rgba(7, 13, 29, 0.85));
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.16s ease, transform 0.16s ease;
}
a[data-runtime="recommendation"]:hover {
  border-color: rgba(242, 180, 92, 0.45);
  transform: translateY(-2px);
}
a[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  background: var(--teal);
  filter: saturate(0.9) contrast(1.05);
}
a[data-runtime="recommendation"] [data-runtime="name"] {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #e7eefb;
}
a[data-runtime="recommendation"] [data-runtime="blurb"] {
  font-size: 10.5px;
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink-faint);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-main > .recommend-region {
  min-width: 0;
}
.site-footer {
  border-top: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(6, 11, 26, 0.6), rgba(4, 8, 16, 1));
  padding: 18px 20px 26px;
}
.friend-links {
  max-width: 1280px;
  margin: 0 auto 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
}
.friend-links-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-transform: uppercase;
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: -0.005em;
  color: var(--ink-dim);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}
a.runtime-friend-link:hover {
  color: var(--gold-soft);
}
.footer-disclaimer {
  max-width: 1280px;
  margin: 0 auto 12px;
  font-size: 11px;
  font-weight: 200;
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: var(--ink-faint);
}
.footer-nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(79, 182, 196, 0.28);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--gold-soft);
  border-color: rgba(242, 180, 92, 0.6);
}
@media (min-width: 1024px) {.page-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
.movie-overview {
    grid-template-columns: 264px minmax(0, 1fr);
  }
.page-main > .comments-section + .recommend-region, .page-main > .recommend-region {
    grid-column: 1 / -1;
  }
.page-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas:
      "overview overview overview"
      "timeline timeline timeline"
      "episodes episodes episodes"
      "comments comments comments"
      "rec1 rec2 rec3";
  }
.page-main > .movie-overview { grid-area: overview; }
.page-main > .timeline-section { grid-area: timeline; }
.page-main > .episodes-section { grid-area: episodes; }
.page-main > .comments-section { grid-area: comments; }
.page-main > .recommend-region:nth-of-type(1) { grid-area: rec1; }
.page-main > .recommend-region:nth-of-type(2) { grid-area: rec2; }
.page-main > .recommend-region:nth-of-type(3) { grid-area: rec3; }
.page-main > .recommend-region {
    align-self: start;
    height: auto;
    padding: 12px;
    border: 1px solid var(--rule);
    border-radius: 3px;
    background: linear-gradient(165deg, rgba(12, 23, 45, 0.6), rgba(6, 11, 24, 0.75));
  }}
@media (max-width: 1023px) {.page-main {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }
.episode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.cast-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
.recommend-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }}
@media (max-width: 860px) {.movie-overview {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "poster"
      "player"
      "cast"
      "synopsis"
      "status"
      "details";
  }
.overview-poster-wrap {
    max-width: 300px;
    margin: 0 auto;
  }
.overview-title-group {
    align-items: center;
    text-align: center;
  }
.overview-tagline {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(242, 180, 92, 0.4);
    padding-top: 6px;
  }
.synopsis-body {
    columns: 1;
    column-rule: none;
  }
.cast-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }}
@media (max-width: 720px) {.page-main {
    padding: 16px 14px 36px;
    gap: 22px;
  }
.header-inner {
    padding: 9px 14px;
    gap: 10px;
  }
a[data-contract="site-name"] {
    font-size: 15px;
  }
.movie-overview {
    padding: 14px;
    gap: 12px;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comments-masonry {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
.section-heading {
    font-size: 15px;
  }
.recommend-heading {
    font-size: 14px;
  }
.overview-player-wrap {
    min-width: 0;
  }
.ctrl-volume {
    flex: 0 0 60px;
    width: 60px;
  }}
@media (max-width: 520px) {.cast-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }
.overview-title {
    font-size: 26px;
  }
.player-controls {
    padding: 7px 8px;
    gap: 5px 6px;
  }
.ctrl-btn {
    padding: 4px 8px;
    font-size: 10.5px;
  }
.ctrl-progress {
    flex: 1 1 100%;
    min-width: 0;
    order: -1;
  }
.recommend-list {
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
    gap: 7px;
  }
.details-table th {
    width: 66px;
  }
.footer-nav {
    gap: 8px 12px;
  }}
@media (max-width: 380px) {.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (prefers-reduced-motion: reduce) {*, *::before, *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }}

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}
