:root {
  --ink: #1c1b19;
  --ink-soft: #33312d;
  --paper: #d8d4cc;
  --paper-dark: #c4bfb5;
  --panel: #e3dfd6;
  --panel-deep: #cdc7bb;
  --rust: #8c3a24;
  --rust-bright: #a8462b;
  --rust-deep: #5f2416;
  --steel: #6d6f6e;
  --steel-dark: #474948;
  --rule: #8f887b;
  --rule-soft: #aaa396;
  --shadow: rgba(18, 16, 13, 0.42);
  --font-hei: "Heiti SC", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
  --font-song: "Songti SC", "SimSun", "Noto Serif SC", "Source Han Serif SC", serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background-color: #b9b4aa;
  background-image:
    repeating-linear-gradient(0deg, rgba(28, 27, 25, 0.045) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(28, 27, 25, 0.035) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, #c7c2b8 0%, #b3aea4 55%, #a9a49a 100%);
  color: var(--ink);
  font-family: var(--font-hei);
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
}
img, video {
  display: block;
  max-width: 100%;
}
h1, h2, h3, p, dl, dd, dt, ol, ul, li {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(180deg, #2a2823 0%, #1e1c18 100%);
  border-bottom: 3px solid var(--rust);
  box-shadow: 0 2px 0 #0d0c0a, 0 5px 14px var(--shadow);
}
.header-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 18px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 7px 14px;
}
a[data-contract="site-name"] {
  flex: 0 0 auto;
  color: #e6dfd2;
  font-family: var(--font-song);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-shadow: 0 1px 0 #000;
  border-left: 5px solid var(--rust);
  padding-left: 10px;
  line-height: 1.15;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus-visible {
  color: #f4b28e;
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px 4px;
  min-width: 0;
  flex: 1 1 320px;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 3px 9px;
  color: #cbc3b3;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1px solid #4a463e;
  background: linear-gradient(180deg, #35322c, #2a2723);
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: #ffe6d5;
  border-color: var(--rust);
  background: linear-gradient(180deg, #57301f, #3d2114);
}
.page-main {
  display: block;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 14px 34px;
}
.block-heading {
  display: block;
  margin: 0 0 10px;
  padding: 5px 0 5px 12px;
  font-family: var(--font-hei);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #211f1b;
  border-left: 7px solid var(--rust);
  border-bottom: 2px solid #2a2823;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}
.hero-section {
  position: relative;
  margin: 14px 0 0;
  padding: 0 0 12px;
  background:
    linear-gradient(180deg, rgba(28, 27, 25, 0.05), rgba(28, 27, 25, 0.14)),
    repeating-linear-gradient(135deg, rgba(140, 58, 36, 0.06) 0 6px, transparent 6px 14px),
    var(--panel);
  border: 2px solid #26241f;
  border-top: 5px solid var(--rust);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 6px 18px var(--shadow);
}
.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 16px;
  align-items: start;
  padding: 16px 16px 6px;
}
.hero-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  min-width: 0;
}
.hero-title {
  font-family: var(--font-song);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.06em;
  color: #171512;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
  border-bottom: 3px double var(--rust);
  padding-bottom: 7px;
  width: 100%;
}
.hero-tagline {
  font-family: var(--font-hei);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--rust-deep);
  padding: 2px 8px;
  background: rgba(140, 58, 36, 0.12);
  border-left: 3px solid var(--rust);
}
.hero-seo {
  font-family: var(--font-song);
  font-size: 13.5px;
  line-height: 1.62;
  color: #2b2924;
  text-align: justify;
  max-width: 62ch;
}
.detail-strip {
  width: 100%;
  margin-top: 3px;
  padding: 8px 10px;
  background: linear-gradient(180deg, #ccc6b9, #bfb9ab);
  border: 1px solid #7c766a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}
.detail-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 3px 8px 3px 0;
  border-bottom: 1px dashed rgba(71, 73, 72, 0.35);
  min-width: 0;
}
.detail-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.detail-item dt {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #4d3a2c;
  background: rgba(28, 27, 25, 0.08);
  padding: 0 5px;
  line-height: 1.5;
}
.detail-item dd {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-song);
  font-size: 12.5px;
  font-weight: 600;
  color: #1f1d19;
  letter-spacing: 0.02em;
}
.hero-media {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-width: 0;
}
.hero-poster-wrap {
  align-self: flex-start;
  width: 168px;
  max-width: 100%;
  border: 3px solid #26241f;
  background: #1b1a17;
  box-shadow: 0 4px 12px var(--shadow);
  line-height: 0;
}
.hero-poster {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: grayscale(0.24) contrast(1.06) saturate(0.86);
}
.hero-player-mount {
  position: relative;
  width: 100%;
  min-width: 0;
  border: 3px solid #26241f;
  background: #0e0d0b;
  box-shadow: 0 4px 14px var(--shadow);
}
.hero-player-mount video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  padding: 6px 7px;
  background: linear-gradient(180deg, #35322c, #26241f);
  border-top: 2px solid var(--rust);
}
.pc-btn {
  flex: 0 0 auto;
  padding: 3px 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ded6c6;
  background: linear-gradient(180deg, #4a463e, #34312b);
  border: 1px solid #5d584e;
  text-shadow: 0 1px 0 #000;
}
.pc-btn:hover, .pc-btn:focus-visible {
  color: #ffe9da;
  border-color: var(--rust-bright);
  background: linear-gradient(180deg, #6a3823, #432215);
}
.pc-progress {
  flex: 1 1 120px;
  min-width: 80px;
  height: 12px;
  accent-color: var(--rust-bright);
  cursor: pointer;
}
.pc-volume {
  flex: 0 1 84px;
  min-width: 56px;
  height: 12px;
  accent-color: var(--steel);
  cursor: pointer;
}
.pc-speed {
  flex: 0 0 auto;
  padding: 3px 4px;
  font-size: 11.5px;
  color: #ded6c6;
  background: #34312b;
  border: 1px solid #5d584e;
}
.pc-play.is-playing {
  color: #ffe9da;
  border-color: var(--rust-bright);
  background: linear-gradient(180deg, #6a3823, #432215);
}
.pc-mute.is-muted {
  color: #ffd0b8;
  border-color: var(--rust-bright);
  background: linear-gradient(180deg, #6a3823, #432215);
}
.pc-theater.is-theater, .pc-light.is-lights-off {
  color: #ffe9da;
  border-color: var(--rust-bright);
  background: linear-gradient(180deg, #6a3823, #432215);
}
.hero-shell.is-theater {
  grid-template-columns: minmax(0, 1fr);
}
.hero-shell.is-theater .hero-media {
  order: -1;
}
body.is-lights-off {
  background-image: linear-gradient(180deg, #1a1917 0%, #121110 100%);
  background-color: #141312;
}
body.is-lights-off .page-main {
  filter: brightness(0.72) contrast(1.08);
}
body.is-lights-off .hero-player-mount {
  filter: brightness(1.28) contrast(1.05);
}
.overview-synopsis {
  margin: 4px 16px 0;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.28);
  border-top: 2px solid #2a2823;
  border-bottom: 1px solid var(--rule-soft);
}
.synopsis-body {
  columns: 2;
  column-gap: 22px;
  column-rule: 1px solid var(--rule-soft);
}
.synopsis-para {
  font-family: var(--font-song);
  font-size: 13px;
  line-height: 1.72;
  color: #2a2823;
  text-align: justify;
  margin: 0 0 7px;
  break-inside: avoid;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.overview-cast {
  margin: 12px 16px 0;
  padding-top: 10px;
  border-top: 1px solid var(--rule-soft);
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}
.cast-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px 6px;
  background:
    linear-gradient(180deg, rgba(28, 27, 25, 0.04), rgba(28, 27, 25, 0.12)),
    var(--panel-deep);
  border: 2px solid #2a2823;
  border-bottom: 4px solid var(--rust);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.cast-name {
  font-family: var(--font-hei);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #1d1b18;
  white-space: nowrap;
}
.overview-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 14px;
  margin: 12px 16px 8px;
  padding: 7px 10px;
  background: linear-gradient(90deg, var(--rust-deep), #3a1a10 70%, #2a140c);
  border: 1px solid #1c0f09;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.status-current {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #ffdcc6;
}
.status-total {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #c7b39e;
  border-left: 2px solid #6d3a24;
  padding-left: 12px;
}
.timeline-section {
  margin: 26px 0 0;
  padding: 12px 0 4px;
  border-top: 3px solid #2a2823;
}
.timeline-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 4px 14px;
  background:
    repeating-linear-gradient(90deg, rgba(28, 27, 25, 0.05) 0 1px, transparent 1px 44px),
    linear-gradient(180deg, #b7b2a7, #a8a399);
  border: 1px solid #7c766a;
  box-shadow: inset 0 2px 6px rgba(28, 27, 25, 0.22);
  scrollbar-color: var(--rust) #9d988e;
  scrollbar-width: thin;
}
.timeline-track {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: max-content;
  padding: 26px 8px 4px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5d584e, var(--rust) 60%, #2a2823);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
}
.timeline-node {
  position: relative;
  flex: 0 0 auto;
  width: 178px;
  padding: 26px 12px 10px;
  border-left: 1px dashed rgba(71, 73, 72, 0.45);
}
.timeline-node:first-child {
  border-left: 0;
}
.node-rivet {
  position: absolute;
  top: 21px;
  left: 14px;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle at 34% 30%, #d9d3c6, #6d6f6e 55%, #3a3b39);
  border: 2px solid #26241f;
  border-radius: 50%;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5), 0 2px 4px rgba(28, 27, 25, 0.4);
  z-index: 2;
}
.node-time {
  display: block;
  font-family: var(--font-hei);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--rust-deep);
  margin-bottom: 4px;
}
.node-label {
  display: block;
  font-family: var(--font-song);
  font-size: 12.5px;
  line-height: 1.55;
  color: #2b2924;
}
.timeline-node-old .node-rivet {
  background: radial-gradient(circle at 34% 30%, #f0a97e, var(--rust-bright) 55%, var(--rust-deep));
  border-color: #1c0f09;
  box-shadow: 0 0 0 3px rgba(140, 58, 36, 0.32), 0 2px 5px rgba(28, 27, 25, 0.5);
}
.timeline-node-old .node-time {
  color: #f4e2d5;
  background: var(--rust);
  display: inline-block;
  padding: 1px 7px;
}
.timeline-node-old .node-label {
  color: #241f1a;
  font-weight: 700;
}
.episodes-section {
  margin: 30px 0 0;
  padding: 12px 0 0;
  border-top: 3px solid #2a2823;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  background: var(--panel);
}
.episode-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 10px 12px 12px 46px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(28, 27, 25, 0.03));
  min-width: 0;
}
.episode-cell:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(140, 58, 36, 0.08));
}
.ep-number {
  position: absolute;
  top: 9px;
  left: 9px;
  font-family: var(--font-hei);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  color: #b8b2a6;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 0 #fff;
}
.ep-title {
  font-family: var(--font-hei);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #1b1916;
  line-height: 1.25;
}
.ep-summary {
  font-family: var(--font-song);
  font-size: 12px;
  line-height: 1.6;
  color: #3a372f;
  text-align: justify;
  flex: 1 1 auto;
}
.ep-duration {
  flex: 0 0 auto;
  align-self: flex-start;
  margin-top: 2px;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #f0e2d4;
  background: linear-gradient(180deg, var(--rust), var(--rust-deep));
  border: 1px solid #3f1c10;
}
.comments-section {
  margin: 30px 0 0;
  padding: 12px 0 0;
  border-top: 3px solid #2a2823;
}
.comments-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  align-items: start;
}
.comment-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.comment-card {
  padding: 7px 10px;
  background: var(--panel-deep);
  border: 1px solid #8f887b;
  border-left: 4px solid var(--steel-dark);
  min-width: 0;
}
.comment-card:nth-child(even) {
  background: #d3cdc0;
}
.comment-nick {
  display: block;
  font-family: var(--font-hei);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--rust-deep);
  margin-bottom: 2px;
}
.comment-text {
  font-family: var(--font-song);
  font-size: 12px;
  line-height: 1.55;
  color: #2c2a25;
  text-align: justify;
}
.rec-region {
  margin: 26px 0 0;
  padding: 10px 0 0;
  border-top: 2px solid #2a2823;
}
.rec-heading {
  margin: 0 0 8px;
  font-family: var(--font-hei);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #1f1d19;
  padding-left: 10px;
  border-left: 6px solid var(--steel-dark);
}
.rec-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.rec-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
a[data-runtime="recommendation"] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  color: #1f1d19;
  text-decoration: none;
  background: linear-gradient(180deg, #d9d4c9, #c7c1b4);
  border: 2px solid #2a2823;
  border-bottom: 4px solid var(--rust);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  min-width: 0;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
a[data-runtime="recommendation"]:hover, a[data-runtime="recommendation"]:focus-visible {
  color: #1f1d19;
  text-decoration: none;
  border-bottom-color: var(--rust-deep);
  box-shadow: 0 4px 12px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
a[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  background: #1b1a17;
  border: 1px solid #26241f;
  filter: grayscale(0.2) contrast(1.05);
}
a[data-runtime="recommendation"] > span[data-runtime="name"] {
  font-family: var(--font-hei);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: #1b1916;
}
a[data-runtime="recommendation"] > span[data-runtime="blurb"] {
  font-family: var(--font-song);
  font-size: 11.5px;
  line-height: 1.5;
  color: #3c3931;
  text-align: justify;
}
.site-footer {
  margin-top: 30px;
  background: linear-gradient(180deg, #2a2823, #171614);
  border-top: 4px solid var(--rust);
  color: #b9b1a2;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 14px 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #3a372f;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-family: var(--font-hei);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
}
a[data-contract="footer-home"] {
  color: #e6dfd2;
}
a[data-contract="footer-sitemap"] {
  color: #c0a087;
}
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: #f4b28e;
  text-decoration: underline;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin-top: 10px;
  padding-top: 4px;
}
.friend-links-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #8c8375;
  border-right: 2px solid var(--rust);
  padding-right: 10px;
}
a.runtime-friend-link {
  font-size: 12px;
  color: #a79e8f;
  text-decoration: none;
  padding: 1px 0;
  border-bottom: 1px dotted #4a463e;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: #e6dfd2;
  text-decoration: underline;
}
.footer-disclaimer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #3a372f;
  font-family: var(--font-song);
  font-size: 11.5px;
  line-height: 1.6;
  color: #7d7669;
  text-align: justify;
}
@media (max-width: 1080px) {.hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
.cast-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
.rec-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 900px) {.hero-shell {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-media {
    max-width: 560px;
  }
.synopsis-body {
    columns: 1;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.rec-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 720px) {.header-bar {
    padding: 6px 10px;
  }
.page-main {
    padding: 0 10px 26px;
  }
.hero-title {
    font-size: 26px;
  }
.hero-poster-wrap {
    width: 140px;
  }
.detail-list {
    grid-template-columns: minmax(0, 1fr);
  }
.detail-item:nth-last-child(-n + 2) {
    border-bottom: 1px dashed rgba(71, 73, 72, 0.35);
  }
.detail-item:last-child {
    border-bottom: 0;
  }
.cast-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.comments-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
.overview-synopsis, .overview-cast, .overview-status {
    margin-left: 10px;
    margin-right: 10px;
  }}
@media (max-width: 560px) {body {
    font-size: 14px;
  }
.header-bar {
    gap: 4px 10px;
  }
a[data-contract="site-name"] {
    font-size: 17px;
  }
.hero-title {
    font-size: 22px;
  }
.block-heading {
    font-size: 17px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-row, .rec-grid-two {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-node {
    width: 156px;
  }
.hero-media {
    max-width: 100%;
  }}
@media (max-width: 400px) {.cast-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-poster-wrap {
    width: 118px;
  }}
@media (prefers-reduced-motion: reduce) {a[data-runtime="recommendation"] {
    transition: none;
  }
a[data-runtime="recommendation"]:hover, a[data-runtime="recommendation"]:focus-visible {
    transform: none;
  }}

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}
