:root {
  --ink-900: #06090f;
  --ink-800: #0a0f18;
  --ink-700: #0e1520;
  --ink-600: #131c2a;
  --ink-500: #1a2434;
  --ink-400: #223046;
  --dai: #16283f;
  --dai-deep: #0c1826;
  --gold: #b8944a;
  --gold-dim: #7d6432;
  --gold-bright: #d9b463;
  --gold-line: rgba(184, 148, 74, 0.42);
  --zhu: #c0392b;
  --zhu-glow: rgba(192, 57, 43, 0.55);
  --text: #cfd6e0;
  --text-dim: #8c97a6;
  --text-faint: #5d6875;
  --serif: "Songti SC", "STSong", "SimSun", "Noto Serif CJK SC", serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --mono: "SFMono-Regular", "JetBrains Mono", Consolas, "Courier New", monospace;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background-color: var(--ink-900);
  background-image:
    radial-gradient(120% 80% at 50% -10%, rgba(22, 40, 63, 0.85) 0%, rgba(6, 9, 15, 0) 60%),
    radial-gradient(90% 60% at 90% 100%, rgba(192, 57, 43, 0.09) 0%, rgba(6, 9, 15, 0) 55%),
    linear-gradient(180deg, #06090f 0%, #080d15 40%, #06090f 100%);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
h2, h3, p, ul, ol, dl, dd {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
a {
  color: var(--gold-bright);
  text-decoration: none;
}
button, input {
  font: inherit;
  color: inherit;
}
::selection {
  background: var(--zhu);
  color: #fff;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(6, 9, 15, 0.97) 0%, rgba(9, 14, 22, 0.92) 100%);
  border-bottom: 1px solid var(--gold-line);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.6), 0 10px 26px -18px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
}
.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.site-brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
  text-decoration: none;
  padding-right: 14px;
  border-right: 1px solid var(--gold-line);
  text-shadow: 0 0 14px rgba(217, 180, 99, 0.35);
}
.site-brand:hover {
  color: #f0d38c;
}
.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}
.runtime-category {
  display: inline-block;
  white-space: nowrap;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  padding: 3px 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.runtime-category:hover {
  color: var(--gold-bright);
  border-color: var(--gold-line);
  background-color: rgba(184, 148, 74, 0.08);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px 34px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.section-heading {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  padding-left: 12px;
  border-left: 3px solid var(--zhu);
  line-height: 1.3;
}
.player-shell {
  margin-top: 14px;
  background: linear-gradient(180deg, var(--ink-700) 0%, var(--ink-800) 100%);
  border: 1px solid var(--ink-400);
  border-radius: 3px;
  box-shadow: 0 18px 40px -28px #000, inset 0 0 0 1px rgba(184, 148, 74, 0.06);
  overflow: hidden;
}
.player-shell__stage {
  position: relative;
  background: #000;
  width: 100%;
}
.player-shell__stage video {
  display: block;
  width: 100%;
  background: #000;
}
.player-shell__controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(10, 15, 24, 0.96) 0%, rgba(14, 21, 32, 0.98) 100%);
  border-top: 1px solid var(--ink-400);
}
.player-shell__btn {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  background: rgba(22, 40, 63, 0.6);
  border: 1px solid var(--ink-400);
  border-radius: 2px;
  padding: 4px 10px;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}
.player-shell__btn:hover {
  color: var(--gold-bright);
  border-color: var(--gold-line);
  background: rgba(184, 148, 74, 0.12);
}
.player-shell__btn.is-active {
  color: #f6e2b4;
  border-color: var(--gold);
  background: rgba(184, 148, 74, 0.24);
  box-shadow: 0 0 12px -2px rgba(217, 180, 99, 0.5);
}
.player-shell__slider {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  flex: 1 1 160px;
  min-width: 120px;
  background: linear-gradient(90deg, var(--gold-dim) 0%, var(--ink-400) 100%);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.player-shell__slider--volume {
  flex: 0 1 110px;
  min-width: 80px;
  background: linear-gradient(90deg, var(--dai) 0%, var(--ink-400) 100%);
}
.player-shell__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-bright);
  border: 1px solid #2a1c08;
  box-shadow: 0 0 8px var(--gold-glow, rgba(217, 180, 99, 0.7));
}
.player-shell__slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-bright);
  border: 1px solid #2a1c08;
}
body.is-theater .player-shell {
  border-color: var(--gold);
}
.player-shell.is-theater .player-shell__stage {
  box-shadow: inset 0 0 0 1px rgba(184, 148, 74, 0.35);
}
body.is-lights-off {
  background-image:
    radial-gradient(120% 80% at 50% -10%, rgba(10, 18, 30, 0.95) 0%, rgba(3, 5, 9, 0) 60%);
}
body.is-lights-off .page-main > section:not(.player-shell) {
  opacity: 0.28;
  filter: saturate(0.4);
  transition: opacity 0.4s ease;
}
.movie-overview {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  grid-template-areas:
    "head    head"
    "poster  synopsis"
    "poster  cast"
    "status  cast"
    "details details";
  gap: 14px 24px;
  align-items: start;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(14, 21, 32, 0.94) 0%, rgba(10, 15, 24, 0.96) 100%);
  border: 1px solid var(--ink-400);
  border-radius: 3px;
  box-shadow: inset 0 0 60px -30px rgba(22, 40, 63, 0.9);
}
.movie-overview__head {
  grid-area: head;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink-400);
}
.movie-overview__heading {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #e8d9ae;
  line-height: 1.25;
  text-shadow: 0 0 22px rgba(184, 148, 74, 0.24);
}
.movie-overview__tagline {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.movie-overview__sub {
  margin-top: 2px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-faint);
}
.movie-overview__poster {
  grid-area: poster;
  width: 100%;
  align-self: start;
  position: relative;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 12px 30px -18px #000;
}
.movie-overview__poster-img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05) brightness(0.92);
}
.synopsis {
  grid-area: synopsis;
  border-top: 1px solid var(--ink-400);
  padding-top: 10px;
}
.synopsis__heading {
  font-size: 14px;
  letter-spacing: 0.16em;
  border-left-width: 2px;
  margin-bottom: 6px;
}
.synopsis__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.synopsis__para {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text);
  text-align: justify;
}
.synopsis__para::first-letter {
  font-family: var(--serif);
  color: var(--gold);
}
.cast {
  grid-area: cast;
  border-top: 1px solid var(--ink-400);
  padding-top: 10px;
}
.cast__heading {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
  border-left: 2px solid var(--zhu);
  padding-left: 10px;
  margin-bottom: 8px;
}
.cast__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.cast__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "avatar name"
    "avatar role";
  align-items: center;
  gap: 0 8px;
  padding: 5px 8px;
  background: rgba(22, 40, 63, 0.32);
  border: 1px solid transparent;
  border-radius: 2px;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
.cast__card:hover {
  border-color: var(--gold-line);
  background: rgba(184, 148, 74, 0.1);
}
.cast__avatar {
  grid-area: avatar;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold-bright);
  background: radial-gradient(circle at 35% 30%, var(--dai) 0%, var(--dai-deep) 100%);
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  line-height: 1;
}
.cast__name {
  grid-area: name;
  font-family: var(--serif);
  font-size: 13.5px;
  letter-spacing: 0.08em;
  color: #e2d3ab;
  line-height: 1.3;
}
.cast__role {
  grid-area: role;
  font-size: 11px;
  color: var(--text-faint);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.episode-status {
  grid-area: status;
  border-top: 1px solid var(--ink-400);
  padding-top: 10px;
}
.episode-status__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.episode-status__item {
  flex: 1 1 60px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 5px 8px;
  background: rgba(12, 24, 38, 0.7);
  border: 1px solid var(--ink-400);
  border-radius: 2px;
}
.episode-status__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-faint);
}
.episode-status__value {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--gold-bright);
  line-height: 1.3;
}
.details {
  grid-area: details;
  border-top: 1px solid var(--ink-400);
  padding-top: 10px;
}
.details__heading {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
  border-left: 2px solid var(--zhu);
  padding-left: 10px;
  margin-bottom: 8px;
}
.details__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px 18px;
}
.details__row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 3px 0;
  border-bottom: 1px dashed rgba(184, 148, 74, 0.16);
}
.details__key {
  flex: 0 0 auto;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}
.details__val {
  font-size: 13px;
  color: var(--text);
  min-width: 0;
}
.details__row:nth-child(8) .details__val {
  font-family: var(--mono);
  color: var(--gold-bright);
}
.timeline {
  padding: 4px 0 0;
}
.timeline__heading {
  margin-bottom: 14px;
}
.timeline__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 2px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) var(--ink-700);
}
.timeline__scroll::-webkit-scrollbar {
  height: 6px;
}
.timeline__scroll::-webkit-scrollbar-track {
  background: var(--ink-700);
}
.timeline__scroll::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 3px;
}
.timeline__rail {
  position: relative;
  min-width: 940px;
  padding: 74px 0;
}
.timeline__rail::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 148, 74, 0.12) 0%, var(--gold-line) 12%, var(--gold) 50%, var(--gold-line) 88%, rgba(184, 148, 74, 0.12) 100%);
}
.timeline__track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  list-style: none;
}
.timeline__node {
  position: relative;
  flex: 1 1 0;
  min-width: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.timeline__node::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: var(--ink-900);
  border: 1px solid var(--gold);
  box-shadow: 0 0 10px -1px rgba(217, 180, 99, 0.7);
}
.timeline__node--up {
  transform: translateY(-46px);
}
.timeline__node--down {
  transform: translateY(46px);
}
.timeline__node--up .timeline__time, .timeline__node--down .timeline__time {
  order: 1;
}
.timeline__time {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  padding: 1px 8px;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  background: rgba(12, 24, 38, 0.85);
}
.timeline__label {
  font-size: 12px;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 168px;
}
.timeline__node:hover .timeline__label {
  color: var(--text);
}
.timeline__node:hover::after {
  background: var(--zhu);
  border-color: var(--zhu);
  box-shadow: 0 0 14px var(--zhu-glow);
}
.episodes__heading {
  margin-bottom: 12px;
}
.episodes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.episodes__cell {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 11px;
  background: linear-gradient(180deg, rgba(14, 21, 32, 0.85) 0%, rgba(10, 15, 24, 0.9) 100%);
  border: 1px solid var(--ink-400);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}
.episodes__cell:hover {
  border-color: var(--zhu);
  box-shadow: 0 0 0 1px var(--zhu-glow), 0 0 18px -6px var(--zhu-glow);
  background: linear-gradient(180deg, rgba(30, 18, 18, 0.85) 0%, rgba(18, 12, 14, 0.92) 100%);
}
.episodes__cell.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(184, 148, 74, 0.5), 0 0 20px -6px rgba(217, 180, 99, 0.6);
}
.episodes__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.episodes__title {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #e2d3ab;
  line-height: 1.35;
}
.episodes__summary {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-dim);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episodes__duration {
  margin-top: auto;
  padding-top: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}
.comments__heading {
  margin-bottom: 12px;
}
.comments__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.comments__block {
  position: relative;
  max-width: 62%;
  padding: 8px 12px;
  background: linear-gradient(180deg, rgba(22, 40, 63, 0.5) 0%, rgba(12, 24, 38, 0.62) 100%);
  border: 1px solid var(--ink-400);
  border-radius: 2px;
}
.comments__block--left {
  align-self: flex-start;
  border-left: 2px solid var(--gold-dim);
}
.comments__block--right {
  align-self: flex-end;
  border-right: 2px solid var(--zhu);
  text-align: right;
  background: linear-gradient(180deg, rgba(38, 22, 22, 0.42) 0%, rgba(20, 12, 14, 0.6) 100%);
}
.comments__block--right .comments__nick {
  justify-content: flex-end;
}
.comments__nick {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.comments__nick::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  flex: 0 0 auto;
}
.comments__block--right .comments__nick::before {
  order: 2;
  background: var(--zhu);
  box-shadow: 0 0 8px var(--zhu-glow);
}
.comments__text {
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--text);
}
.recommend {
  position: relative;
  padding-left: 30px;
}
.recommend__heading {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  writing-mode: vertical-rl;
  text-orientation: upright;
  position: absolute;
  left: 0;
  top: 0;
  padding: 6px 0;
  border-left: 1px solid var(--gold-line);
  line-height: 1.1;
}
.recommend__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}
.recommend__item {
  min-width: 0;
}
.recommend__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  padding: 6px;
  background: rgba(12, 24, 38, 0.5);
  border: 1px solid var(--ink-400);
  border-radius: 2px;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
.recommend__link:hover {
  border-color: var(--gold-line);
  background: rgba(22, 40, 63, 0.6);
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 1px;
  filter: saturate(0.82) brightness(0.9);
  transition: filter 0.2s ease;
}
.recommend__link:hover .recommend__thumb {
  filter: saturate(1) brightness(1);
}
.recommend__name {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #e2d3ab;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recommend__blurb {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--text-faint);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 8px;
  border-top: 1px solid var(--gold-line);
  background: linear-gradient(180deg, rgba(9, 14, 22, 0.92) 0%, rgba(6, 9, 15, 1) 100%);
}
.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.site-footer__link {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.site-footer__link:hover {
  color: #f0d38c;
  border-bottom-color: var(--gold);
}
.site-footer__disclaimer {
  font-size: 11.5px;
  line-height: 1.75;
  color: var(--text-faint);
  max-width: 900px;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  padding-top: 8px;
  border-top: 1px dashed rgba(184, 148, 74, 0.18);
}
.friend-links__label {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold);
  white-space: nowrap;
}
.runtime-friend-link {
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease;
}
.runtime-friend-link:hover {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a[data-contract="site-name"] {
  color: var(--gold-bright);
  text-decoration: none;
}
a.runtime-category {
  color: var(--text-dim);
  text-decoration: none;
}
a.recommend__link {
  color: var(--text);
  text-decoration: none;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--gold-bright);
  text-decoration: none;
}
@media (max-width: 1024px) {.movie-overview {
    grid-template-columns: minmax(0, 190px) minmax(0, 1fr);
  }
.cast__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.details__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episodes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 760px) {.page-main {
    gap: 20px;
    padding-bottom: 26px;
  }
.movie-overview {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "head"
      "poster"
      "synopsis"
      "cast"
      "status"
      "details";
    gap: 12px;
    padding: 14px;
  }
.movie-overview__poster {
    max-width: 220px;
  }
.movie-overview__heading {
    font-size: 22px;
  }
.cast__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episodes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comments__block {
    max-width: 88%;
  }
.recommend {
    padding-left: 24px;
  }
.timeline__rail {
    min-width: 820px;
  }
.player-shell__slider {
    flex: 1 1 100%;
  }}
@media (max-width: 520px) {.site-header__inner {
    padding: 7px 12px;
    gap: 10px;
  }
.site-brand {
    font-size: 17px;
    letter-spacing: 0.1em;
  }
.site-nav {
    gap: 4px;
  }
.runtime-category {
    font-size: 12px;
    padding: 2px 7px;
  }
.page-main {
    padding-left: 12px;
    padding-right: 12px;
    gap: 18px;
  }
.movie-overview {
    padding: 12px;
  }
.movie-overview__poster {
    max-width: 180px;
  }
.cast__list {
    grid-template-columns: minmax(0, 1fr);
  }
.details__list {
    grid-template-columns: minmax(0, 1fr);
  }
.episodes__grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comments__block {
    max-width: 100%;
  }
.recommend {
    padding-left: 20px;
  }
.recommend__grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
.recommend__heading {
    font-size: 13px;
  }
.timeline__rail {
    min-width: 720px;
    padding: 64px 0;
  }
.timeline__node {
    min-width: 118px;
  }
.episode-status__item {
    flex: 1 1 46%;
  }
.friend-links {
    gap: 5px 10px;
  }}

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}
