*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, p, ul, ol, li, dl, dd, dt {
  margin: 0;
  padding: 0;
}
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; color: inherit; }
a { color: inherit; }
:root {
  --ink-black: #070d12;
  --ink-deep: #0c161d;
  --ink-slate: #13242e;
  --ink-teal: #1a3038;
  --ink-mist: #2a414b;
  --wet-line: #35525c;
  --paper-warm: #e9e0cd;
  --paper-dim: #b9b09c;
  --gold: #e2a94a;
  --gold-soft: #f0c877;
  --gold-deep: #a9762a;
  --lamp-glow: rgba(226, 169, 74, 0.42);
  --font-serif: "Songti SC", "STSong", "SimSun", "Noto Serif SC", "Source Han Serif SC", serif;
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  background:
    radial-gradient(120% 90% at 12% 0%, #16303a 0%, rgba(12, 22, 29, 0) 55%),
    radial-gradient(90% 70% at 100% 8%, rgba(226, 169, 74, 0.09) 0%, rgba(12, 22, 29, 0) 60%),
    linear-gradient(180deg, #0a141b 0%, #070d12 42%, #0a131a 100%);
  background-color: var(--ink-black);
  color: var(--paper-warm);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(7, 13, 18, 0.96), rgba(7, 13, 18, 0.82));
  border-bottom: 1px solid rgba(53, 82, 92, 0.6);
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}
a[data-contract="site-name"] {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  text-decoration: none;
  text-shadow: 0 0 18px rgba(226, 169, 74, 0.35);
  white-space: nowrap;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus-visible {
  color: #ffd98f;
}
.categories-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 4px 12px;
  font-size: 13px;
  color: var(--paper-dim);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  letter-spacing: 0.06em;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--gold-soft);
  border-color: rgba(226, 169, 74, 0.5);
  background: rgba(226, 169, 74, 0.07);
}
.page-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 18px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-heading {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  padding-left: 12px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.3;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  bottom: 0.18em;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  box-shadow: 0 0 10px var(--lamp-glow);
}
.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr);
  grid-template-areas:
    "media rail"
    "synopsis rail"
    "status rail"
    "details rail";
  column-gap: 22px;
  row-gap: 14px;
  align-items: start;
  background:
    radial-gradient(80% 60% at 20% 10%, rgba(42, 65, 75, 0.55) 0%, rgba(12, 22, 29, 0) 70%),
    linear-gradient(155deg, #10222b 0%, #0b151c 60%, #0a131a 100%);
  border: 1px solid rgba(53, 82, 92, 0.55);
  border-radius: 4px;
  padding: 16px;
}
.hero-media {
  grid-area: media;
  position: relative;
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  border-radius: 3px;
  background: #05090d;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.62);
}
.hero-poster {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06) brightness(0.94);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 13, 18, 0) 58%, rgba(7, 13, 18, 0.72) 100%),
    linear-gradient(180deg, rgba(7, 13, 18, 0) 70%, rgba(7, 13, 18, 0.55) 100%);
}
.hero-info-rail {
  grid-area: rail;
  align-self: start;
  position: sticky;
  top: 66px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 14px 18px;
  background: linear-gradient(180deg, rgba(19, 36, 46, 0.9), rgba(9, 17, 23, 0.94));
  border: 1px solid rgba(53, 82, 92, 0.7);
  border-left: 2px solid var(--gold-deep);
  border-radius: 3px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.16;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #fdf6e6;
  text-shadow: 0 0 26px rgba(226, 169, 74, 0.25);
  writing-mode: vertical-rl;
  text-orientation: upright;
  max-height: 340px;
  margin-left: auto;
  margin-right: 2px;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: var(--paper-dim);
  border-top: 1px solid rgba(53, 82, 92, 0.6);
  padding-top: 12px;
}
.hero-cast-rail {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(53, 82, 92, 0.6);
  padding-top: 4px;
}
.cast-rail-item {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--paper-warm);
  padding: 7px 2px 7px 14px;
  position: relative;
  border-bottom: 1px dashed rgba(53, 82, 92, 0.45);
}
.cast-rail-item:last-child { border-bottom: 0; }
.cast-rail-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}
.synopsis-block {
  grid-area: synopsis;
  border-top: 1px solid rgba(53, 82, 92, 0.55);
  padding-top: 12px;
}
.synopsis-body {
  columns: 2;
  column-gap: 22px;
  column-rule: 1px solid rgba(53, 82, 92, 0.4);
}
.synopsis-para {
  font-size: 13.5px;
  line-height: 1.62;
  color: #cfc6b1;
  margin-bottom: 8px;
  break-inside: avoid;
  text-indent: 2em;
}
.synopsis-para:last-child { margin-bottom: 0; }
.episode-status-block {
  grid-area: status;
  border-top: 1px solid rgba(53, 82, 92, 0.55);
  padding-top: 12px;
}
.status-readout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}
.status-current {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--gold-soft);
  border: 1px solid rgba(226, 169, 74, 0.55);
  background: rgba(226, 169, 74, 0.08);
  padding: 3px 10px;
  border-radius: 2px;
}
.status-total {
  font-size: 13px;
  color: var(--paper-dim);
  letter-spacing: 0.06em;
}
.status-note {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #0c161d;
  background: var(--gold);
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 700;
}
.details-block {
  grid-area: details;
  border-top: 1px solid rgba(53, 82, 92, 0.55);
  padding-top: 12px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px 18px;
}
.details-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 3px 0;
  border-bottom: 1px dotted rgba(53, 82, 92, 0.5);
  font-size: 13px;
}
.details-key {
  flex: 0 0 auto;
  color: #7e8f96;
  letter-spacing: 0.1em;
}
.details-value {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--paper-warm);
  text-align: right;
  letter-spacing: 0.02em;
}
.player-stage {
  display: block;
}
.player-shell {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  background: #05090d;
  border: 1px solid rgba(53, 82, 92, 0.7);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.player-shell.is-playing {
  border-color: rgba(226, 169, 74, 0.6);
  box-shadow: 0 0 0 1px rgba(226, 169, 74, 0.25), 0 22px 50px rgba(0, 0, 0, 0.6);
}
.player-shell.is-theater {
  max-width: 100%;
  border-color: var(--gold);
}
.player-shell.is-lit {
  box-shadow: 0 0 60px 6px rgba(226, 169, 74, 0.28);
}
.player-video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(19, 36, 46, 0.95), rgba(9, 17, 23, 0.98));
  border-top: 1px solid rgba(53, 82, 92, 0.6);
}
.player-btn {
  flex: 0 0 auto;
  background: rgba(42, 65, 75, 0.55);
  border: 1px solid rgba(53, 82, 92, 0.8);
  color: var(--paper-warm);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.18s, color 0.18s, border-color 0.18s;
}
.player-btn:hover, .player-btn:focus-visible {
  background: rgba(226, 169, 74, 0.16);
  border-color: rgba(226, 169, 74, 0.7);
  color: var(--gold-soft);
}
.player-btn.is-active, .player-shell.is-playing .player-btn[data-player-action="play"] {
  background: rgba(226, 169, 74, 0.24);
  border-color: var(--gold);
  color: #ffe6b0;
}
.player-progress {
  flex: 1 1 160px;
  min-width: 120px;
  height: 4px;
  appearance: none;
  background: rgba(53, 82, 92, 0.8);
  border-radius: 2px;
  cursor: pointer;
}
.player-volume {
  flex: 0 1 90px;
  min-width: 64px;
  height: 4px;
  appearance: none;
  background: rgba(53, 82, 92, 0.8);
  border-radius: 2px;
  cursor: pointer;
}
.player-shell.is-muted .player-volume {
  background: rgba(169, 118, 42, 0.6);
}
.player-progress::-webkit-slider-thumb, .player-volume::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 1px solid #f6d99a;
  box-shadow: 0 0 8px var(--lamp-glow);
}
.player-progress::-moz-range-thumb, .player-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 1px solid #f6d99a;
  border-radius: 50%;
  background: var(--gold);
}
.player-shell.is-speed .player-btn[data-player-action="speed"] {
  color: var(--gold-soft);
  border-color: rgba(226, 169, 74, 0.7);
}
.timeline-block {
  border-top: 1px solid rgba(53, 82, 92, 0.5);
  padding-top: 14px;
}
.timeline-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 118px;
}
.timeline-list::before {
  content: "";
  position: absolute;
  left: 100px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, rgba(226, 169, 74, 0.7), rgba(53, 82, 92, 0.4));
}
.timeline-item {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 5px 10px 5px 14px;
  background: linear-gradient(90deg, rgba(26, 48, 56, 0.5), rgba(12, 22, 29, 0.1));
  border-left: 2px solid rgba(226, 169, 74, 0.45);
  border-radius: 2px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-deep);
  border: 1.5px solid var(--gold);
  transform: translateY(-50%);
  box-shadow: 0 0 10px var(--lamp-glow);
}
.timeline-timecode {
  flex: 0 0 auto;
  min-width: 92px;
  font-family: var(--font-serif);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  text-align: right;
  position: absolute;
  left: -118px;
  top: 7px;
}
.timeline-label {
  font-size: 13.5px;
  line-height: 1.5;
  color: #d6cdb8;
}
.episodes-block {
  border-top: 1px solid rgba(53, 82, 92, 0.5);
  padding-top: 14px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}
.episode-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "num title dur"
    "sum sum sum";
  align-items: baseline;
  gap: 4px 10px;
  padding: 8px 12px 10px;
  background: linear-gradient(160deg, rgba(19, 36, 46, 0.72), rgba(9, 17, 23, 0.72));
  border: 1px solid rgba(53, 82, 92, 0.5);
  border-radius: 3px;
  transition: border-color 0.2s, background-color 0.2s;
}
.episode-card:hover {
  border-color: rgba(226, 169, 74, 0.6);
}
.episode-number {
  grid-area: num;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold);
  white-space: nowrap;
}
.episode-title {
  grid-area: title;
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #f2ead8;
}
.episode-duration {
  grid-area: dur;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: #7e8f96;
  white-space: nowrap;
}
.episode-summary {
  grid-area: sum;
  font-size: 12.5px;
  line-height: 1.55;
  color: #a9b2b5;
  border-top: 1px dashed rgba(53, 82, 92, 0.55);
  padding-top: 6px;
  margin-top: 2px;
}
.episode-card:nth-child(18) {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(226, 169, 74, 0.14), rgba(19, 36, 46, 0.85));
  box-shadow: inset 0 0 0 1px rgba(226, 169, 74, 0.35), 0 0 22px rgba(226, 169, 74, 0.16);
}
.episode-card:nth-child(18) .episode-number {
  color: #ffd98f;
}
.episode-card:nth-child(18) .episode-summary {
  color: #ded4bb;
}
.recommend-region {
  border-top: 1px solid rgba(53, 82, 92, 0.5);
  padding-top: 14px;
}
.recommend-heading {
  font-size: 16px;
}
.recommend-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 7px 8px 10px;
  background: linear-gradient(170deg, rgba(26, 48, 56, 0.7), rgba(9, 17, 23, 0.8));
  border: 1px solid rgba(53, 82, 92, 0.5);
  border-radius: 3px;
  text-decoration: none;
  color: var(--paper-warm);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
a.recommend-card:hover, a.recommend-card:focus-visible {
  border-color: rgba(226, 169, 74, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5);
}
[data-runtime="recommendation"] img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.85) brightness(0.92);
}
.recommend-pic {
  display: block;
  background: #05090d;
}
.recommend-name {
  font-family: var(--font-serif);
  font-size: 13.5px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #f2ead8;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recommend-blurb {
  font-size: 12px;
  line-height: 1.5;
  color: #8d9ba1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comments-block {
  border-top: 1px solid rgba(53, 82, 92, 0.5);
  padding-top: 14px;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  align-items: start;
}
.comment-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background:
    linear-gradient(160deg, rgba(233, 224, 205, 0.09), rgba(233, 224, 205, 0.03)),
    rgba(19, 36, 46, 0.72);
  border: 1px solid rgba(53, 82, 92, 0.55);
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s, border-color 0.2s;
}
.comment-note:nth-child(odd) { transform: rotate(-0.55deg); }
.comment-note:nth-child(even) { transform: rotate(0.5deg); }
.comment-note:nth-child(3n) { transform: rotate(-0.25deg); }
.comment-note:hover {
  transform: rotate(0deg) translateY(-2px);
  border-color: rgba(226, 169, 74, 0.6);
}
.comment-author {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 52px;
}
.comment-avatar {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(240, 200, 119, 0.85), rgba(169, 118, 42, 0.55) 55%, rgba(19, 36, 46, 0.9) 100%);
  border: 1px solid rgba(226, 169, 74, 0.55);
  box-shadow: 0 0 12px rgba(226, 169, 74, 0.22);
}
.comment-nickname {
  font-family: var(--font-serif);
  font-size: 11.5px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
  text-align: center;
  word-break: break-all;
}
.comment-body {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12.5px;
  line-height: 1.58;
  color: #c6bda8;
  border-left: 1px solid rgba(226, 169, 74, 0.28);
  padding-left: 10px;
}
.site-footer {
  border-top: 1px solid rgba(53, 82, 92, 0.6);
  background: linear-gradient(180deg, rgba(9, 17, 23, 0.7), rgba(5, 9, 13, 0.95));
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--paper-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
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: var(--gold-soft);
  border-bottom-color: rgba(226, 169, 74, 0.6);
}
.footer-disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: #6f7d83;
  max-width: 78ch;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 12px;
  border-top: 1px dashed rgba(53, 82, 92, 0.5);
  padding-top: 10px;
}
.friend-links-label {
  font-family: var(--font-serif);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  margin-right: 4px;
}
a.runtime-friend-link {
  font-size: 12px;
  letter-spacing: 0.03em;
  color: #8d9ba1;
  text-decoration: none;
  padding: 1px 2px;
  transition: color 0.2s;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 1000px) {.hero-stage {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "rail"
      "media"
      "synopsis"
      "status"
      "details";
  }
.hero-info-rail {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px 20px;
  }
.hero-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    max-height: none;
    margin: 0;
    font-size: 27px;
    flex: 1 1 220px;
  }
.hero-tagline {
    flex: 1 1 240px;
    border-top: 0;
    border-left: 1px solid rgba(53, 82, 92, 0.6);
    padding-top: 0;
    padding-left: 14px;
  }
.hero-cast-rail {
    flex: 1 1 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 16px;
    border-top: 1px solid rgba(53, 82, 92, 0.6);
    padding-top: 6px;
  }
.cast-rail-item {
    border-bottom: 0;
    padding: 4px 0 4px 12px;
  }}
@media (max-width: 760px) {.page-main { padding: 12px 12px 32px; gap: 18px; }
.header-inner { padding: 8px 12px; }
.footer-inner { padding: 14px 12px 22px; }
.hero-stage { padding: 12px; }
.hero-title { font-size: 23px; }
.synopsis-body {
    columns: 1;
    column-rule: none;
  }
.details-list { grid-template-columns: minmax(0, 1fr); }
.episode-grid { grid-template-columns: minmax(0, 1fr); }
.timeline-list { padding-left: 92px; }
.timeline-list::before { left: 78px; }
.timeline-timecode { min-width: 74px; left: -92px; font-size: 11.5px; }
.comment-stack { grid-template-columns: minmax(0, 1fr); }
.comment-note:nth-child(odd), .comment-note:nth-child(even), .comment-note:nth-child(3n) { transform: rotate(0deg); }}
@media (max-width: 520px) {body { font-size: 14px; }
.hero-info-rail { flex-direction: column; padding: 12px; }
.hero-tagline {
    border-left: 0;
    border-top: 1px solid rgba(53, 82, 92, 0.6);
    padding-left: 0;
    padding-top: 10px;
  }
.hero-cast-rail { flex-direction: column; gap: 0; }
.player-controls { gap: 5px 6px; padding: 7px 8px; }
.player-btn { font-size: 11.5px; padding: 4px 8px; }
.player-progress { flex: 1 1 100%; }
.player-volume { flex: 1 1 70px; }
.timeline-list { padding-left: 0; }
.timeline-list::before { display: none; }
.timeline-item { flex-direction: column; gap: 2px; padding-left: 10px; }
.timeline-item::before { display: none; }
.timeline-timecode { position: static; min-width: 0; text-align: left; }
.recommend-row { grid-template-columns: repeat(auto-fill, minmax(128px, 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}
