:root {
  --ash-0: #101214;
  --ash-1: #16191c;
  --ash-2: #1d2126;
  --ash-3: #262b31;
  --ash-4: #333940;
  --ash-5: #464d55;
  --ash-6: #6a727a;
  --ash-7: #99a1a8;
  --ash-8: #c3c9ce;
  --rust-0: #3a2016;
  --rust-1: #5c2f1d;
  --rust-2: #7d3c22;
  --ember: #ff5a1f;
  --ember-2: #ff7a3d;
  --ember-dim: rgba(255, 90, 31, 0.16);
  --line: #2b3138;
  --line-soft: #23282e;
  --paper: #cfd4d8;
  --maxw: 1180px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background-color: var(--ash-0);
  background-image:
    radial-gradient(1200px 520px at 12% -8%, rgba(125, 60, 34, 0.28), transparent 62%),
    radial-gradient(900px 420px at 88% 4%, rgba(58, 32, 22, 0.34), transparent 66%),
    linear-gradient(180deg, #121417 0%, #101214 42%, #0d0f11 100%);
  color: var(--ash-8);
  font-family: "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img, video {
  display: block;
  max-width: 100%;
}
h1, h2, h3, p, dl, dd, dt, figure, ol, ul, li {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
.site-header {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 16px 11px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(29, 33, 38, 0.92), rgba(16, 18, 20, 0.4));
}
.site-brand {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ash-8);
  white-space: nowrap;
  padding-left: 10px;
  border-left: 3px solid var(--ember);
  line-height: 1.15;
}
a[data-contract="site-name"] {
  color: var(--ash-8);
  text-decoration: none;
}
a[data-contract="site-name"]:hover {
  color: var(--ember-2);
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ash-7);
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(38, 43, 49, 0.5);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
a.runtime-category:hover {
  color: var(--ember-2);
  border-color: var(--ember-dim);
  background: rgba(125, 60, 34, 0.22);
}
.page-main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px 40px;
}
.block-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash-6);
  padding-bottom: 6px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.block-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 34px;
  height: 1px;
  background: var(--ember);
}
.hero-ash {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0 26px;
  align-items: start;
}
.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  grid-column: 1 / -1;
}
.hero-poster-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  max-width: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #0b0d0e;
}
.hero-poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(255, 90, 31, 0.10) 0%, transparent 42%),
    linear-gradient(0deg, rgba(11, 13, 14, 0.86) 0%, rgba(11, 13, 14, 0.1) 46%, transparent 100%);
  pointer-events: none;
}
.hero-poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.06) brightness(0.88);
}
.hero-ledger {
  grid-column: 2 / -1;
  align-self: start;
  justify-self: stretch;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(38, 43, 49, 0.62), rgba(22, 25, 28, 0.72));
  backdrop-filter: blur(3px);
  padding: 12px 14px 14px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 90, 31, 0.04);
}
.hero-kicker {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ember-2);
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}
.hero-facts {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 6px;
  align-items: baseline;
}
.fact-key {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ash-6);
}
.fact-val {
  font-size: 13px;
  color: var(--ash-8);
  font-weight: 500;
}
.hero-facts .fact-val:last-child {
  color: var(--ember);
  font-weight: 700;
  font-size: 15px;
}
.overview-text {
  grid-column: 1 / -1;
  max-width: 720px;
  padding-top: 2px;
}
.movie-title {
  font-size: 25px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #e6eaed;
  font-stretch: condensed;
}
.movie-title::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin-top: 9px;
  background: linear-gradient(90deg, var(--ember), transparent);
}
.movie-tagline {
  margin-top: 9px;
  font-size: 13px;
  color: var(--ash-7);
  line-height: 1.55;
  border-left: 2px solid var(--rust-1);
  padding-left: 9px;
}
.movie-seo {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--ash-6);
}
.player-shell {
  grid-column: 1 / -1;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #0b0d0e;
  overflow: hidden;
  width: 100%;
  min-width: 0;
}
.player-shell video {
  display: block;
  background: #000;
  width: 100%;
}
.player-theater .player-shell, .player-shell.player-theater {
  box-shadow: 0 0 0 1px var(--ember-dim);
}
.player-lights-off .player-shell {
  background: #000;
}
.player-lights-off .page-main {
  filter: brightness(0.72);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 8px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(29, 33, 38, 0.9), rgba(16, 18, 20, 0.9));
}
.player-controls button {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ash-7);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(38, 43, 49, 0.55);
  white-space: nowrap;
  transition: color 0.14s ease, border-color 0.14s ease, background 0.14s ease;
}
.player-controls button:hover {
  color: var(--ember-2);
  border-color: var(--rust-1);
  background: rgba(92, 47, 29, 0.4);
}
.player-controls button.is-active, .player-controls button.click {
  color: #ffd9c7;
  border-color: var(--ember);
  background: rgba(255, 90, 31, 0.18);
}
[data-player-action="play"].is-playing {
  color: #ffd9c7;
  border-color: var(--ember);
}
.player-controls .progress {
  color: var(--ash-8);
}
.player-controls .volume, .player-controls .speed, .player-controls .mute, .player-controls .pip, .player-controls .fullscreen, .player-controls .theater, .player-controls .light {
  color: var(--ash-7);
}
.player-controls .data-player-action {
  color: var(--ash-7);
}
.cast-strip {
  margin-top: 22px;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.cast-item {
  flex: 1 1 190px;
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  align-content: start;
  padding: 10px 14px 10px 0;
  border-bottom: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
}
.cast-item:last-child {
  border-right: 0;
}
.cast-avatar-wrap {
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0d0e;
  flex: 0 0 auto;
}
.cast-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.08) brightness(0.92);
}
.cast-item:hover .cast-avatar {
  filter: grayscale(0.2) sepia(0.25) contrast(1.05) brightness(0.98);
}
.cast-name {
  align-self: end;
  font-size: 13px;
  font-weight: 600;
  color: var(--ash-8);
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cast-role {
  align-self: start;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--ash-6);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.synopsis-block {
  margin-top: 22px;
  padding: 14px 16px 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(38, 43, 49, 0.34), rgba(22, 25, 28, 0.42));
}
.synopsis-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 22px;
}
.synopsis-body p {
  font-size: 12.5px;
  line-height: 1.68;
  color: var(--ash-7);
  padding-top: 6px;
  border-top: 1px solid var(--line-soft);
}
.episode-status {
  margin-top: 22px;
}
.status-line {
  font-size: 12.5px;
  color: var(--ash-7);
  margin-bottom: 10px;
}
.status-meter {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 6px;
}
.status-dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 5px 11px 5px 24px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(38, 43, 49, 0.42);
  color: var(--ash-7);
  white-space: nowrap;
}
.status-dot::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ash-5);
}
.status-dot-done {
  color: var(--ash-6);
}
.status-dot-done::before {
  background: var(--ash-6);
  box-shadow: 0 0 0 2px rgba(106, 114, 122, 0.18);
}
.status-dot-current {
  color: #ffd9c7;
  border-color: var(--ember);
  background: rgba(255, 90, 31, 0.14);
}
.status-dot-current::before {
  background: var(--ember);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.22);
}
.status-dot-todo::before {
  background: transparent;
  border: 1px solid var(--ash-5);
}
.detail-table {
  margin-top: 22px;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}
.detail-key, .detail-val {
  padding: 7px 10px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 12px;
  min-width: 0;
}
.detail-key {
  background: rgba(29, 33, 38, 0.6);
  color: var(--ash-6);
  letter-spacing: 0.1em;
}
.detail-val {
  color: var(--ash-8);
  overflow-wrap: anywhere;
}
.timeline-band {
  margin-top: 24px;
  padding: 14px 0 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.timeline-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: 0;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--rust-1) transparent;
}
.timeline-track::-webkit-scrollbar {
  height: 6px;
}
.timeline-track::-webkit-scrollbar-thumb {
  background: var(--rust-1);
  border-radius: 3px;
}
.timeline-node {
  position: relative;
  padding: 22px 14px 10px 12px;
  border-right: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
  min-width: 0;
  align-self: start;
}
.timeline-node:last-child {
  border-right: 0;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ash-0);
  border: 1px solid var(--ash-5);
}
.timeline-node::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 12px;
  right: 0;
  height: 1px;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(125, 60, 34, 0.85) 0 5px,
    transparent 5px 9px
  );
  opacity: 0.55;
}
.node-time {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ash-6);
  margin-bottom: 5px;
}
.node-label {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ash-7);
}
.timeline-node-current {
  background: linear-gradient(180deg, rgba(255, 90, 31, 0.12), transparent 78%);
  border-top-color: var(--rust-1);
}
.timeline-node-current::before {
  background: var(--ember);
  border-color: var(--ember-2);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.2);
}
.timeline-node-current::after {
  background-image: none;
  background: linear-gradient(90deg, var(--ember), transparent);
  opacity: 0.9;
}
.timeline-node-current .node-time {
  color: var(--ember-2);
  font-weight: 700;
}
.timeline-node-current .node-label {
  color: #e3e7ea;
}
.episode-grid-block {
  margin-top: 24px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.episode-card {
  position: relative;
  display: block;
  padding: 11px 12px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(38, 43, 49, 0.42), rgba(22, 25, 28, 0.5));
  min-width: 0;
}
.episode-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--ash-4);
}
.ep-num {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--ash-6);
}
.ep-duration {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--ash-6);
  padding: 1px 6px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(16, 18, 20, 0.6);
  white-space: nowrap;
}
.ep-title {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ash-8);
  padding-right: 66px;
  margin-bottom: 6px;
}
.ep-summary {
  font-size: 12px;
  line-height: 1.55;
  color: var(--ash-6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-bottom: 16px;
}
.episode-card-current {
  border-color: var(--rust-1);
  background: linear-gradient(180deg, rgba(125, 60, 34, 0.26), rgba(22, 25, 28, 0.62));
}
.episode-card-current::before {
  background: var(--ember);
}
.episode-card-current .ep-num {
  color: var(--ember-2);
  font-weight: 700;
}
.episode-card-current .ep-title {
  color: #f0f3f5;
}
.episode-card:hover {
  border-color: var(--rust-1);
}
.comments-block {
  margin-top: 26px;
  padding: 16px 16px 18px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(13, 15, 17, 0.72), rgba(18, 20, 23, 0.86));
}
.comments-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 18px;
  align-items: start;
}
.comment-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.comment-col-short {
  border-right: 1px solid var(--line-soft);
  padding-right: 16px;
}
.comment-item {
  padding: 9px 0 10px;
  border-bottom: 1px solid var(--line-soft);
  min-width: 0;
}
.comment-item:last-child {
  border-bottom: 0;
}
.comment-nick {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ember-2);
  margin-bottom: 3px;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ash-7);
}
.comment-col-long .comment-nick {
  color: var(--ash-6);
}
.comment-col-long .comment-text {
  color: var(--ash-8);
}
.rec-region {
  margin-top: 24px;
}
.rec-title {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ash-7);
  padding-bottom: 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.rec-grid {
  display: grid;
  gap: 10px;
  align-items: start;
}
.rec-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.rec-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rec-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
a.rec-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(38, 43, 49, 0.4), rgba(16, 18, 20, 0.6));
  padding: 6px 6px 8px;
  color: var(--ash-8);
  text-decoration: none;
  min-width: 0;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
a.rec-card:hover {
  border-color: var(--ember);
}
a.rec-card:hover .rec-name {
  color: var(--ember-2);
}
[data-runtime="recommendation"] img, .rec-card .rec-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  background: #0b0d0e;
  filter: saturate(0.7) contrast(1.05) brightness(0.9);
}
.rec-name {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ash-8);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.rec-blurb {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.45;
  color: var(--ash-6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13, 15, 17, 0.9), rgba(9, 10, 11, 1));
  padding: 18px 16px 26px;
}
.site-footer > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--ash-6);
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 12px;
}
a[data-contract="footer-home"] {
  font-size: 12px;
  color: var(--ash-7);
  text-decoration: none;
  letter-spacing: 0.06em;
}
a[data-contract="footer-home"]:hover {
  color: var(--ember-2);
  text-decoration: underline;
}
a[data-contract="footer-sitemap"] {
  font-size: 12px;
  color: var(--ash-7);
  text-decoration: none;
  letter-spacing: 0.06em;
}
a[data-contract="footer-sitemap"]:hover {
  color: var(--ember-2);
  text-decoration: underline;
}
.footer-friends {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
}
.friends-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ash-5);
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--ash-6);
  text-decoration: none;
  border-bottom: 1px dotted var(--ash-5);
}
a.runtime-friend-link:hover {
  color: var(--ember-2);
  border-bottom-color: var(--ember-2);
}
@media (max-width: 1024px) {.rec-grid-five {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.detail-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.hero-ash {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-stage {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
.hero-poster-wrap {
    grid-column: 1;
    max-width: none;
  }
.hero-ledger {
    grid-column: 2;
  }
.synopsis-body {
    grid-template-columns: minmax(0, 1fr);
  }
.comments-columns {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-col-short {
    border-right: 0;
    padding-right: 0;
  }
.rec-grid-four, .rec-grid-five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 640px) {body {
    font-size: 13px;
  }
.site-header {
    gap: 10px;
    padding: 10px 12px;
  }
.page-main {
    padding: 0 12px 32px;
  }
.hero-ash {
    padding: 16px 0 20px;
    gap: 14px;
  }
.hero-stage {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
.hero-poster-wrap {
    grid-column: 1;
    max-width: 240px;
  }
.hero-ledger {
    grid-column: 1;
  }
.movie-title {
    font-size: 21px;
  }
.cast-item {
    flex-basis: 50%;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-track {
    grid-auto-columns: minmax(180px, 1fr);
  }
.rec-grid-four, .rec-grid-three, .rec-grid-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.detail-key, .detail-val {
    padding: 6px 8px;
    font-size: 11.5px;
  }}
@media (max-width: 420px) {.cast-item {
    flex-basis: 100%;
    border-right: 0;
  }
.rec-grid-four, .rec-grid-three, .rec-grid-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.movie-title {
    font-size: 19px;
  }}
@media (prefers-reduced-motion: reduce) {* {
    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}
