:root {
  --lake-1: #12151b;
  --lake-2: #1a1f28;
  --lake-3: #232a35;
  --lake-4: #2e3743;
  --grid-line: #333c48;
  --dusk: #3b2f47;
  --dusk-2: #4a3a5c;
  --mandala: #5a3d6e;
  --mandala-deep: #38253f;
  --ink: #c9cfd8;
  --ink-dim: #8a93a1;
  --ink-faint: #5d6673;
  --scale: #7fd8cf;
  --scale-soft: #4fa89f;
  --scale-glow: rgba(127, 216, 207, 0.35);
  --paper: #e8e4dc;
  --font: "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --gap-tight: 0.5rem;
  --gap: 0.75rem;
  --gap-wide: 1.1rem;
  --rule: 1px solid var(--grid-line);
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background: var(--lake-1);
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  font-weight: 400;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 70% -10%, rgba(90, 61, 110, 0.28), transparent 70%),
    radial-gradient(ellipse 60% 40% at 10% 110%, rgba(56, 37, 63, 0.4), transparent 70%),
    linear-gradient(180deg, var(--lake-1) 0%, var(--lake-2) 100%);
  background-attachment: fixed;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
video {
  display: block;
  max-width: 100%;
}
a {
  color: var(--scale-soft);
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}
a:hover {
  color: var(--scale);
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
input {
  font-family: inherit;
}
h1, h2, h3 {
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(18, 21, 27, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: var(--rule);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
}
a[data-contract="site-name"] {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--scale);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  padding-left: 0.85rem;
}
a[data-contract="site-name"]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.5rem;
  height: 1px;
  background: var(--scale);
  transform: translateY(-50%) rotate(-28deg);
  box-shadow: 0 0 6px var(--scale-glow);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 1px;
}
a.runtime-category:hover {
  color: var(--scale);
  border-color: var(--grid-line);
  background: var(--lake-3);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.section-heading {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  text-transform: uppercase;
  padding-bottom: 0.35rem;
  border-bottom: var(--rule);
  margin-bottom: var(--gap);
  position: relative;
}
.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 2.4rem;
  height: 1px;
  background: var(--scale);
  box-shadow: 0 0 8px var(--scale-glow);
}
.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 300px;
  grid-template-areas:
    "stage   headline  poster"
    "stage   caststrip poster"
    "player  player    player"
    "synopsis synopsis details"
    "synopsis synopsis status";
  gap: var(--gap-wide);
  align-items: start;
  padding: 1.2rem;
  background: linear-gradient(160deg, var(--lake-2) 0%, var(--lake-1) 100%);
  border: var(--rule);
  overflow: hidden;
}
.hero-stage {
  grid-area: stage;
  position: relative;
  min-height: 260px;
  align-self: stretch;
  overflow: hidden;
}
.hero-figure {
  position: absolute;
  left: 50%;
  width: 44px;
  height: 220px;
  transform: translateX(-50%);
  border-radius: 50% 50% 42% 42% / 60% 60% 40% 40%;
}
.hero-figure-dancer {
  top: 6%;
  background: linear-gradient(180deg, #2b3340 0%, #1b212b 60%, #10141a 100%);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.6) inset;
  transform: translateX(-50%) rotate(-4deg);
}
.hero-figure-mirror {
  top: 6%;
  transform: translateX(-50%) rotate(-4deg) scaleY(-1);
  opacity: 0.32;
  filter: blur(1.2px);
  background: linear-gradient(0deg, rgba(90, 61, 110, 0.55) 0%, rgba(18, 21, 27, 0.1) 90%);
  background-clip: content-box;
  -webkit-mask-image: linear-gradient(0deg, #000 0%, transparent 85%);
  mask-image: linear-gradient(0deg, #000 0%, transparent 85%);
}
.hero-vines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(28deg, transparent 0 12px, rgba(127, 216, 207, 0.22) 12px 13px),
    repeating-linear-gradient(-32deg, transparent 0 15px, rgba(90, 61, 110, 0.3) 15px 16px),
    repeating-linear-gradient(74deg, transparent 0 19px, rgba(127, 216, 207, 0.14) 19px 20px);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 78%);
  pointer-events: none;
}
.hero-poster-media {
  grid-area: poster;
  align-self: start;
  width: 100%;
  border: var(--rule);
  position: relative;
  overflow: hidden;
}
.poster-image {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05) brightness(0.94);
}
.hero-headline {
  grid-area: headline;
  align-self: start;
}
.movie-title {
  font-size: clamp(1.5rem, 3.6vw, 2.3rem);
  letter-spacing: 0.1em;
  color: #e6e9ef;
  line-height: 1.1;
}
.movie-tagline {
  margin-top: 0.4rem;
  font-size: 0.84rem;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
  max-width: 42ch;
  border-left: 2px solid var(--mandala);
  padding-left: 0.6rem;
}
.hero-cast-strip {
  grid-area: caststrip;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cast-strip-heading {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: var(--scale-soft);
  text-transform: uppercase;
}
.cast-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.cast-chip {
  font-size: 0.75rem;
  color: var(--ink);
  padding: 0.12rem 0.5rem;
  background: var(--lake-3);
  border: 1px solid var(--grid-line);
  border-radius: 1px;
  letter-spacing: 0.06em;
}
.hero-player-wrap {
  grid-area: player;
  width: 100%;
  min-width: 0;
  border: var(--rule);
  background: #0b0e12;
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  transition: background 0.25s ease;
}
.hero-player-wrap.is-light {
  background: #05070a;
}
.hero-player-wrap.is-theater {
  box-shadow: 0 0 0 1px var(--scale-soft), 0 0 32px rgba(127, 216, 207, 0.12);
}
.player-video {
  display: block;
  width: 100%;
  background: #000;
  border: none;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
}
.player-btn {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--ink-dim);
  padding: 0.22rem 0.5rem;
  border: 1px solid var(--grid-line);
  border-radius: 1px;
  background: var(--lake-2);
  white-space: nowrap;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.player-btn:hover {
  color: var(--scale);
  border-color: var(--scale-soft);
}
.player-btn.is-active {
  color: var(--lake-1);
  background: var(--scale);
  border-color: var(--scale);
}
.player-btn.is-muted {
  color: var(--dusk-2);
  border-color: var(--mandala);
}
.player-btn-play {
  color: var(--scale);
  border-color: var(--scale-soft);
}
.player-progress {
  flex: 1 1 140px;
  min-width: 100px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--lake-4);
  border-radius: 2px;
  cursor: pointer;
}
.player-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--scale);
  box-shadow: 0 0 6px var(--scale-glow);
}
.player-progress::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: var(--scale);
}
.player-volume {
  flex: 0 1 70px;
  min-width: 50px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--lake-4);
  border-radius: 2px;
  cursor: pointer;
}
.player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--scale-soft);
}
.player-volume::-moz-range-thumb {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 50%;
  background: var(--scale-soft);
}
.hero-synopsis {
  grid-area: synopsis;
  align-self: start;
  border-top: var(--rule);
  padding-top: var(--gap);
}
.synopsis-heading {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--scale-soft);
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.synopsis-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.synopsis-paragraph {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--ink);
  padding-left: 0.7rem;
  border-left: 1px solid var(--grid-line);
}
.synopsis-paragraph:first-child {
  color: #dde2e9;
}
.hero-episode-status {
  grid-area: status;
  align-self: start;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.6rem;
  background: var(--lake-3);
  border: 1px solid var(--grid-line);
  border-left: 2px solid var(--mandala);
}
.episode-status-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--scale);
  padding: 0.1rem 0.4rem;
  border: 1px solid var(--scale-soft);
}
.episode-status-count {
  font-size: 0.72rem;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
}
.episode-status-current {
  font-size: 0.72rem;
  color: var(--dusk-2);
  color: #b39ecb;
  letter-spacing: 0.06em;
}
.hero-details {
  grid-area: details;
  align-self: start;
  border-top: var(--rule);
  padding-top: var(--gap);
}
.details-heading {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--scale-soft);
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.details-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.details-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.28rem 0;
  border-bottom: 1px solid rgba(51, 60, 72, 0.6);
  font-size: 0.78rem;
}
.details-row:last-child {
  border-bottom: none;
}
.details-key {
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  flex: 0 0 auto;
}
.details-value {
  color: var(--ink);
  text-align: right;
  margin-left: auto;
}
.details-rating {
  color: var(--scale);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-shadow: 0 0 10px var(--scale-glow);
}
.details-row-rating {
  border-top: 1px solid var(--grid-line);
  margin-top: 0.15rem;
  padding-top: 0.4rem;
}
.timeline-section {
  padding: 0;
}
.timeline-heading {
  margin-bottom: 0.5rem;
}
.timeline-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem 1.1rem;
  padding-top: 0.6rem;
}
.timeline-node {
  position: relative;
  padding-left: 0.9rem;
  padding-bottom: 0.5rem;
  border-left: 1px solid var(--grid-line);
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0.35rem;
  width: 8px;
  height: 8px;
  background: var(--scale-soft);
  transform: translateX(-50%);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 0 6px var(--scale-glow);
}
.timeline-node::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 0.75rem;
  width: 5px;
  height: 5px;
  background: var(--mandala);
  transform: translateX(-50%) rotate(45deg);
  opacity: 0.7;
}
.timeline-timecode {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--scale-soft);
  margin-bottom: 0.15rem;
}
.timeline-label {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--ink-dim);
}
.episodes-section {
  padding: 0;
}
.episodes-heading {
  margin-bottom: 0.55rem;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: start;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.6rem 0.7rem;
  background: var(--lake-2);
  border: 1px solid var(--grid-line);
  border-top: 2px solid var(--mandala);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.episode-card:hover {
  border-top-color: var(--scale);
  background: var(--lake-3);
}
.episode-number {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
}
.episode-title {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--scale);
  text-shadow: 0 0 12px var(--scale-glow);
}
.episode-summary {
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--ink-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-duration {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-top: 0.1rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(51, 60, 72, 0.6);
}
.cast-section {
  padding: 0;
}
.cast-heading {
  margin-bottom: 0.55rem;
}
.cast-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
  align-items: start;
}
.cast-column {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: flex-start;
  padding: 0.5rem;
  background: var(--lake-2);
  border: 1px solid var(--grid-line);
}
.cast-portrait {
  flex: 0 0 44%;
  max-width: 92px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cast-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(0.45) brightness(0.9);
  border: 1px solid var(--grid-line);
}
.cast-name {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--scale-soft);
  text-align: center;
}
.cast-info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cast-role {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--mandala);
  color: #a98fc0;
}
.cast-bio {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--ink-dim);
}
.comments-section {
  padding: 0;
}
.comments-heading {
  margin-bottom: 0.55rem;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: start;
}
.comment-note {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.6rem 0.7rem;
  background: linear-gradient(175deg, #1e232c 0%, #191d25 100%);
  border: 1px solid var(--grid-line);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.35);
  position: relative;
}
.comment-note::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 26px;
  height: 2px;
  background: var(--mandala);
}
.comment-note:nth-child(2n) {
  transform: rotate(-0.6deg);
}
.comment-note:nth-child(3n) {
  transform: rotate(0.5deg);
}
.comment-note:nth-child(5n) {
  transform: rotate(-1deg);
}
.comment-text {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--ink);
}
.comment-nickname {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  align-self: flex-end;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(51, 60, 72, 0.6);
  width: 100%;
  text-align: right;
}
.recommend-region {
  padding: 0;
}
.recommend-heading {
  margin-bottom: 0.55rem;
}
.recommend-rail {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: var(--lake-4) transparent;
  -webkit-overflow-scrolling: touch;
}
.recommend-rail::-webkit-scrollbar {
  height: 5px;
}
.recommend-rail::-webkit-scrollbar-track {
  background: var(--lake-2);
}
.recommend-rail::-webkit-scrollbar-thumb {
  background: var(--lake-4);
}
a.recommend-card {
  flex: 0 0 172px;
  width: 172px;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding: 0.4rem;
  background: var(--lake-2);
  border: 1px solid var(--grid-line);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
a.recommend-card:hover {
  border-color: var(--scale-soft);
  transform: translateY(-2px);
  color: var(--ink);
}
[data-runtime="recommendation"] img, .recommend-image {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.9);
}
.recommend-name {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--scale);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recommend-blurb {
  font-size: 0.7rem;
  line-height: 1.45;
  color: var(--ink-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: var(--rule);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--scale);
  border-bottom-color: var(--scale-soft);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.6rem;
  padding-top: 0.3rem;
  border-top: 1px solid rgba(51, 60, 72, 0.5);
}
.friend-links-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
a.runtime-friend-link {
  font-size: 0.7rem;
  color: var(--ink-dim);
  text-decoration: none;
  padding: 0.08rem 0.35rem;
  border: 1px solid transparent;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: var(--scale);
  border-color: var(--grid-line);
  background: var(--lake-2);
}
.footer-disclaimer {
  font-size: 0.68rem;
  line-height: 1.6;
  color: var(--ink-faint);
  max-width: 62ch;
}
@media (max-width: 1024px) {.hero-shell {
    grid-template-columns: 170px minmax(0, 1fr) 240px;
    gap: var(--gap);
  }
.cast-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.comment-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.hero-shell {
    grid-template-columns: minmax(0, 1fr) 220px;
    grid-template-areas:
      "headline  poster"
      "stage     poster"
      "caststrip caststrip"
      "player    player"
      "synopsis  synopsis"
      "details   details"
      "status    status";
  }
.hero-stage {
    min-height: 200px;
  }
.timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.cast-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 620px) {.page-main {
    padding: 0.75rem 0.7rem 1.4rem;
    gap: 1.2rem;
  }
.site-header-inner {
    padding: 0.45rem 0.7rem;
  }
.hero-shell {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "headline"
      "poster"
      "stage"
      "caststrip"
      "player"
      "synopsis"
      "details"
      "status";
    padding: 0.8rem;
    gap: 0.7rem;
  }
.hero-poster-media {
    max-width: 220px;
  }
.hero-stage {
    min-height: 160px;
  }
.hero-figure {
    height: 150px;
  }
.timeline-list {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-columns {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-column {
    align-items: center;
  }
.cast-portrait {
    flex: 0 0 84px;
    max-width: 84px;
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-note:nth-child(2n), .comment-note:nth-child(3n), .comment-note:nth-child(5n) {
    transform: none;
  }
a.recommend-card {
    flex: 0 0 148px;
    width: 148px;
  }
.player-controls {
    gap: 0.25rem;
  }
.player-btn {
    font-size: 0.68rem;
    padding: 0.2rem 0.42rem;
  }}

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}
