*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg-deep: #0d1218;
  --bg-panel: #121a23;
  --bg-panel-2: #16202b;
  --line: #223040;
  --line-bright: #34495e;
  --ink: #dfe8f0;
  --ink-dim: #8fa3b5;
  --ink-faint: #5f7185;
  --accent: #7fd4e8;
  --accent-hot: #e05a6b;
  --accent-warm: #d8a657;
  --glow: rgba(127, 212, 232, 0.35);
}
html {
  background: var(--bg-deep);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", "Noto Sans CJK SC", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(127, 212, 232, 0.06), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(224, 90, 107, 0.05), transparent 60%),
    var(--bg-deep);
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--accent);
  text-decoration: none;
}
ul {
  list-style: none;
}
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
button, input, select {
  font: inherit;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 18px;
  background: rgba(13, 18, 24, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-brand {
  display: flex;
  align-items: center;
  min-width: 0;
}
a[data-contract="site-name"].site-logo {
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  padding-right: 10px;
  border-right: 2px solid var(--accent-hot);
  white-space: nowrap;
}
a[data-contract="site-name"].site-logo:hover {
  color: var(--accent);
}
.header-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--bg-panel);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
a.runtime-category:hover {
  color: var(--ink);
  border-color: var(--accent);
  background: var(--bg-panel-2);
}
.page-main {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 18px 18px 34px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
.page-main > section {
  min-width: 0;
}
.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center end;
  min-height: 300px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background:
    linear-gradient(105deg, #0b1017 0%, #131d27 48%, #0e161f 100%);
  overflow: hidden;
}
.hero-overlay-portrait {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  overflow: hidden;
}
.portrait-layer {
  position: absolute;
  top: -6%;
  height: 118%;
  width: 46%;
  border-radius: 46% 46% 40% 40% / 34% 34% 62% 62%;
}
.portrait-shen {
  left: 4%;
  background:
    radial-gradient(ellipse at 42% 30%, rgba(200, 226, 240, 0.5), rgba(70, 120, 150, 0.18) 45%, transparent 72%),
    linear-gradient(180deg, #2a3d4e, #131d27 78%);
  filter: blur(0.4px);
  mix-blend-mode: screen;
  opacity: 0.85;
}
.portrait-gu {
  left: 26%;
  background:
    radial-gradient(ellipse at 58% 32%, rgba(224, 130, 148, 0.42), rgba(140, 60, 80, 0.16) 46%, transparent 74%),
    linear-gradient(180deg, #3a2732, #150f14 80%);
  filter: blur(0.6px);
  mix-blend-mode: screen;
  opacity: 0.8;
}
.portrait-glitch-edge {
  position: absolute;
  top: 8%;
  left: 6%;
  width: 62%;
  height: 90%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(127, 212, 232, 0.22) 0px,
      rgba(127, 212, 232, 0.22) 1px,
      transparent 1px,
      transparent 5px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(224, 90, 107, 0.14) 0px,
      rgba(224, 90, 107, 0.14) 1px,
      transparent 1px,
      transparent 7px
    );
  mix-blend-mode: screen;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse at 34% 50%, #000 30%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 34% 50%, #000 30%, transparent 72%);
}
.hero-tagline {
  position: relative;
  z-index: 2;
  max-width: 46ch;
  text-align: right;
  font-size: clamp(18px, 3.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.18;
  color: #f2f7fb;
  text-shadow: 0 0 18px rgba(13, 18, 24, 0.95), 0 2px 0 rgba(13, 18, 24, 0.9);
  padding: 6px 0;
}
.player-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg-panel);
  width: 100%;
  min-width: 0;
}
.player-shell video {
  display: block;
  width: 100%;
  max-width: 100%;
  background: #000;
  border-radius: 2px;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
  min-width: 0;
}
.player-btn {
  flex: 0 0 auto;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
  background: var(--bg-panel-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
.player-btn:hover {
  color: var(--ink);
  border-color: var(--line-bright);
}
.player-shell.is-playing .player-btn[data-player-action="play"] {
  color: var(--bg-deep);
  background: var(--accent);
  border-color: var(--accent);
}
.player-shell.is-paused .player-btn[data-player-action="play"] {
  color: var(--accent);
  border-color: var(--accent);
}
.player-shell.is-muted .player-btn[data-player-action="mute"] {
  color: var(--accent-hot);
  border-color: var(--accent-hot);
}
.player-shell.is-pip .player-btn[data-player-action="pip"], .player-shell.is-fullscreen .player-btn[data-player-action="fullscreen"], .player-shell.is-theater .player-btn[data-player-action="theater"] {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(127, 212, 232, 0.1);
}
.player-shell.is-theater {
  background: #0a0f14;
  border-color: var(--line-bright);
}
.player-shell.lights-off {
  background: #05080b;
  border-color: #101820;
}
.player-shell.lights-off .player-controls {
  opacity: 0.55;
}
.player-range {
  -webkit-appearance: none;
  appearance: none;
  flex: 1 1 160px;
  min-width: 110px;
  height: 4px;
  background: var(--line-bright);
  border-radius: 2px;
  cursor: pointer;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  box-shadow: 0 0 8px var(--glow);
}
.player-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
}
.player-speed {
  flex: 0 0 auto;
  padding: 5px 8px;
  font-size: 12px;
  color: var(--ink-dim);
  background: var(--bg-panel-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
}
.timeline-heading, .episodes-heading, .comments-heading, .reco-heading {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.timeline-heading::before, .episodes-heading::before, .comments-heading::before, .reco-heading::before {
  content: "";
  flex: 0 0 auto;
  width: 3px;
  height: 15px;
  background: var(--accent-hot);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(224, 90, 107, 0.6);
}
.timeline-shell {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg-panel);
  padding: 14px 14px 16px;
}
.timeline-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-bright) transparent;
  -webkit-overflow-scrolling: touch;
}
.timeline-track::-webkit-scrollbar {
  height: 6px;
}
.timeline-track::-webkit-scrollbar-thumb {
  background: var(--line-bright);
  border-radius: 3px;
}
.timeline-item {
  position: relative;
  flex: 0 0 auto;
  width: 210px;
  padding: 12px 14px 12px 18px;
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(127, 212, 232, 0.04), transparent 70%);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--glow);
  transform: translateX(-50%);
}
.timeline-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(127, 212, 232, 0.05));
  opacity: 0.5;
}
.timeline-timecode {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent);
  padding: 1px 6px;
  border: 1px solid rgba(127, 212, 232, 0.35);
  border-radius: 2px;
  margin-bottom: 6px;
}
.timeline-label {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-dim);
}
.episodes-shell {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg-panel);
  padding: 14px;
}
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
  align-items: start;
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg-panel-2);
  min-width: 0;
}
.episode-number {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--line-bright);
  line-height: 1;
}
.episode-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding-right: 34px;
}
.episode-summary {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ink-faint);
}
.episode-duration {
  align-self: flex-start;
  margin-top: 2px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  padding: 1px 6px;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.episode-card.is-current {
  border-color: var(--accent-hot);
  background: linear-gradient(180deg, rgba(224, 90, 107, 0.12), rgba(224, 90, 107, 0.03));
  box-shadow: 0 0 0 1px rgba(224, 90, 107, 0.25), 0 0 18px rgba(224, 90, 107, 0.12);
}
.episode-card.is-current .episode-number {
  color: var(--accent-hot);
  text-shadow: 0 0 10px rgba(224, 90, 107, 0.6);
}
.episode-card.is-current .episode-duration {
  color: var(--accent-hot);
  border-color: rgba(224, 90, 107, 0.5);
}
.movie-overview-shell {
  display: grid;
  grid-template-columns: minmax(180px, 232px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(127, 212, 232, 0.03), transparent 40%),
    var(--bg-panel);
}
.overview-media {
  align-self: start;
  min-width: 0;
}
.overview-poster {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid var(--line-bright);
  background: var(--bg-panel-2);
}
.overview-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.overview-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #f2f7fb;
}
.overview-tagline {
  font-size: 13px;
  color: var(--ink-dim);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.cast-shell, .synopsis-shell, .details-shell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.cast-heading, .synopsis-heading, .details-heading {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: none;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.cast-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px 3px 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-panel-2);
  min-width: 0;
}
.cast-avatar {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(200, 226, 240, 0.6), rgba(60, 90, 115, 0.5) 55%, #1a2530 100%);
  border: 1px solid var(--line-bright);
}
.cast-item:nth-child(2n) .cast-avatar {
  background:
    radial-gradient(circle at 62% 32%, rgba(224, 130, 148, 0.55), rgba(90, 45, 60, 0.5) 55%, #1a1318 100%);
}
.cast-name {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-dim);
  white-space: nowrap;
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--ink-dim);
}
.synopsis-para + .synopsis-para {
  margin-top: 2px;
}
.episode-status-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.status-current, .status-total {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
}
.status-current {
  color: var(--bg-deep);
  background: var(--accent);
}
.status-total {
  color: var(--ink-dim);
  border: 1px solid var(--line-bright);
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.details-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 10px;
  background: var(--bg-panel-2);
  min-width: 0;
}
.details-key {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
}
.details-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
  min-width: 0;
  overflow-wrap: anywhere;
}
.comments-shell {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg-panel);
  padding: 14px;
}
.comments-stack {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 8px;
  align-items: start;
}
.comment-card {
  position: relative;
  padding: 10px 12px 11px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(180deg, var(--bg-panel-2), #101821);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  min-width: 0;
}
.comment-card::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 10px;
  right: 10px;
  height: 3px;
  background: linear-gradient(90deg, rgba(127, 212, 232, 0.6), rgba(224, 90, 107, 0.4));
  border-radius: 2px;
  opacity: 0.7;
}
.comment-card:nth-child(3n + 2) {
  transform: translateY(6px);
}
.comment-card:nth-child(3n + 3) {
  transform: translateY(-3px);
}
.comment-nickname {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--accent);
  margin-bottom: 5px;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-dim);
}
.reco-region {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg-panel);
  padding: 14px;
  min-width: 0;
}
.reco-scroller {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-bright) transparent;
  -webkit-overflow-scrolling: touch;
}
.reco-scroller::-webkit-scrollbar {
  height: 6px;
}
.reco-scroller::-webkit-scrollbar-thumb {
  background: var(--line-bright);
  border-radius: 3px;
}
a.reco-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 168px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg-panel-2);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}
a.reco-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 2px;
  background: #0a0f14;
  border: 1px solid var(--line);
}
.reco-name {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
}
.reco-blurb {
  font-size: 11px;
  line-height: 1.45;
  color: var(--ink-faint);
}
.reco-compact-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 6px;
  align-items: start;
}
.reco-compact-item {
  min-width: 0;
}
a.reco-compact-link {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 9px;
  row-gap: 1px;
  align-items: center;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg-panel-2);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
a.reco-compact-link:hover {
  border-color: var(--accent);
  background: #182430;
}
a.reco-compact-link img {
  grid-row: 1 / span 2;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
  background: #0a0f14;
}
a.reco-compact-link .reco-name {
  grid-column: 2;
  align-self: end;
  font-size: 12px;
}
a.reco-compact-link .reco-blurb {
  grid-column: 2;
  align-self: start;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reco-region-1 .reco-heading::before {
  background: var(--accent);
  box-shadow: 0 0 8px var(--glow);
}
.reco-region-2 .reco-heading::before {
  background: var(--accent-warm);
  box-shadow: 0 0 8px rgba(216, 166, 87, 0.6);
}
.reco-region-3 .reco-heading::before {
  background: #6fb98f;
  box-shadow: 0 0 8px rgba(111, 185, 143, 0.6);
}
.reco-region-4 .reco-heading::before {
  background: var(--accent-hot);
  box-shadow: 0 0 8px rgba(224, 90, 107, 0.6);
}
.site-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: #0a0f14;
  color: var(--ink-faint);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink-dim);
  text-decoration: none;
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 2px;
  white-space: nowrap;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.footer-friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.friend-links-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--ink-dim);
  text-decoration: none;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: var(--accent);
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: var(--ink-faint);
  max-width: 78ch;
}
@media (max-width: 900px) {.movie-overview-shell {
    grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
    gap: 14px;
  }}
@media (max-width: 720px) {.page-main {
    gap: 16px;
    padding: 14px 12px 26px;
  }
.site-header {
    padding: 9px 12px;
  }
.hero-shell {
    min-height: 240px;
    padding: 22px 18px;
    place-items: center end;
  }
.portrait-layer {
    width: 62%;
  }
.portrait-shen {
    left: -6%;
  }
.portrait-gu {
    left: 22%;
  }
.portrait-glitch-edge {
    width: 88%;
    left: -4%;
  }
.hero-tagline {
    text-align: right;
    max-width: 30ch;
  }
.movie-overview-shell {
    grid-template-columns: minmax(0, 1fr);
  }
.overview-media {
    max-width: 220px;
  }
.details-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }}
@media (max-width: 560px) {body {
    font-size: 13.5px;
  }
.header-categories {
    width: 100%;
  }
.hero-shell {
    min-height: 200px;
    place-items: end center;
    padding: 18px 14px;
  }
.hero-tagline {
    text-align: center;
    font-size: clamp(16px, 5.4vw, 22px);
    max-width: 100%;
    text-shadow: 0 0 14px rgba(13, 18, 24, 0.98), 0 2px 0 rgba(13, 18, 24, 0.95);
  }
.player-controls {
    gap: 5px;
  }
.player-btn {
    padding: 5px 9px;
    font-size: 11.5px;
  }
.player-range {
    flex: 1 1 100%;
    order: 3;
  }
.timeline-item {
    width: 180px;
  }
.episodes-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
.comments-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-card:nth-child(3n + 2), .comment-card:nth-child(3n + 3) {
    transform: none;
  }
.reco-compact-list {
    grid-template-columns: minmax(0, 1fr);
  }
a.reco-card {
    width: 148px;
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }}

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}
