:root {
  --warm: #e8b25c;
  --warm-deep: #c98a34;
  --ember: #e0703a;
  --wall: #2b3238;
  --wall-2: #232a30;
  --wall-3: #1a2025;
  --jade: #4d5c63;
  --jade-soft: #6b7a82;
  --ink: #e9e0d2;
  --ink-dim: #b4a893;
  --ink-faint: #8a7f6d;
  --line: rgba(232, 178, 92, 0.18);
  --line-soft: rgba(180, 168, 147, 0.16);
  --radius: 8px;
  --radius-sm: 5px;
  --serif: "Songti SC", "SimSun", "STSong", "Noto Serif CJK SC", serif;
  --sans: "Heiti SC", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(224, 112, 58, 0.07), transparent 60%),
    linear-gradient(180deg, var(--wall) 0%, var(--wall-2) 45%, var(--wall-3) 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol, dl, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, p {
  margin: 0;
}
button, input, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.4rem;
  padding: 0.5rem clamp(0.75rem, 3vw, 2rem);
  background: rgba(26, 32, 37, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand-bar {
  display: flex;
  align-items: center;
}
a[data-contract="site-name"] {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--warm);
  text-decoration: none;
  padding: 0.15rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
a[data-contract="site-name"]:hover {
  color: var(--ember);
  border-bottom-color: var(--ember);
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.82rem;
  color: var(--ink-dim);
  text-decoration: none;
  padding: 0.2rem 0.7rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
a.runtime-category:hover {
  color: var(--wall-3);
  background: var(--warm);
  border-color: var(--warm);
}
.page-main {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(0.75rem, 3vw, 2rem) 1.5rem;
}
.section-title {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--warm);
  padding-left: 0.65rem;
  border-left: 3px solid var(--ember);
  line-height: 1.3;
  margin-bottom: 0.7rem;
}
.overview-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.05fr);
  grid-template-areas:
    "heading heading"
    "media   info";
  gap: 0.9rem 1.4rem;
  padding: 1.1rem clamp(0.85rem, 2.5vw, 1.5rem) 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(77, 92, 99, 0.28), rgba(26, 32, 37, 0.55) 55%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.012) 0 3px, transparent 3px 9px);
  box-shadow: inset 0 1px 0 rgba(232, 178, 92, 0.08), 0 12px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.overview-shell::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -8%;
  width: 46%;
  height: 90%;
  background: radial-gradient(closest-side, rgba(232, 178, 92, 0.16), transparent 72%);
  pointer-events: none;
}
.overview-heading {
  grid-area: heading;
  position: relative;
  z-index: 1;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}
.overview-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: #f4ead8;
  text-shadow: 0 2px 18px rgba(224, 112, 58, 0.35);
}
.overview-tagline {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
}
.overview-media {
  grid-area: media;
  align-self: start;
  position: relative;
  z-index: 1;
}
.overview-media img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
  filter: saturate(0.92) contrast(1.04);
}
.overview-info {
  grid-area: info;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}
.overview-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.45rem;
}
.meta-chip {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  padding: 0.1rem 0.55rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(77, 92, 99, 0.22);
}
.meta-rating {
  display: inline-block;
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--wall-3);
  padding: 0.12rem 0.6rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(120deg, var(--warm), var(--ember));
}
.overview-player {
  position: relative;
  width: 100%;
  min-width: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #0c0f12;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}
.overview-player video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.5rem;
  padding: 0.5rem 0.6rem;
  background: linear-gradient(180deg, rgba(35, 42, 48, 0.95), rgba(26, 32, 37, 0.98));
  border-top: 1px solid var(--line);
}
.player-controls button {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--ink-dim);
  padding: 0.22rem 0.65rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.player-controls button:hover {
  color: var(--wall-3);
  background: var(--warm);
  border-color: var(--warm);
}
.player-controls button.is-playing, .player-controls button.is-active, .player-controls button.is-muted {
  color: var(--wall-3);
  background: var(--ember);
  border-color: var(--ember);
}
.player-controls input[type="range"] {
  flex: 1 1 90px;
  min-width: 70px;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--warm-deep), rgba(180, 168, 147, 0.25));
  outline: none;
}
.player-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--warm);
  border: 2px solid var(--wall-3);
  box-shadow: 0 0 6px rgba(232, 178, 92, 0.6);
  cursor: pointer;
}
.player-controls input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 2px solid var(--wall-3);
  border-radius: 50%;
  background: var(--warm);
  cursor: pointer;
}
.player-controls select {
  font-size: 0.75rem;
  color: var(--ink-dim);
  padding: 0.22rem 0.35rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}
.player-controls select.is-changed {
  color: var(--warm);
  border-color: var(--warm-deep);
}
.overview-player.is-theater {
  box-shadow: 0 0 0 2px var(--ember), 0 14px 34px rgba(224, 112, 58, 0.28);
}
.overview-player.is-lights-down {
  background: #000;
}
.overview-player.is-lights-down .player-controls {
  opacity: 0.55;
}
.overview-synopsis {
  border-top: 1px solid var(--line-soft);
  padding-top: 0.7rem;
}
.overview-synopsis .section-title {
  margin-bottom: 0.5rem;
}
.synopsis-paragraph {
  font-size: 0.84rem;
  line-height: 1.72;
  color: var(--ink-dim);
  text-indent: 2em;
  margin-bottom: 0.35rem;
}
.synopsis-paragraph:last-child {
  margin-bottom: 0;
}
.overview-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.2rem;
  padding-top: 0.6rem;
  border-top: 1px dashed var(--line-soft);
}
.status-line {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
}
.status-line:first-child {
  color: var(--warm);
}
.overview-cast {
  border-top: 1px solid var(--line-soft);
  padding-top: 0.7rem;
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: start;
}
.cast-card {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.45rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(26, 32, 37, 0.5);
}
.cast-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  filter: saturate(0.85) brightness(0.94);
}
.cast-name {
  font-family: var(--serif);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.cast-role {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--ink-faint);
}
.overview-details {
  border-top: 1px solid var(--line-soft);
  padding-top: 0.7rem;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem 0.8rem;
}
.detail-list dt {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-bottom: 0.05rem;
}
.detail-list dd {
  font-size: 0.82rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px dashed var(--line-soft);
}
.timeline-shell {
  padding: 0.9rem clamp(0.85rem, 2.5vw, 1.5rem) 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(35, 42, 48, 0.72), rgba(26, 32, 37, 0.55));
}
.timeline-track {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.4rem 0 0.9rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--warm-deep) rgba(255, 255, 255, 0.05);
}
.timeline-track::-webkit-scrollbar {
  height: 6px;
}
.timeline-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}
.timeline-track::-webkit-scrollbar-thumb {
  background: var(--warm-deep);
  border-radius: 3px;
}
.timeline-list {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: max-content;
  padding: 0 0.4rem;
}
.timeline-node {
  position: relative;
  flex: 0 0 auto;
  width: 178px;
  padding: 0 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--line-soft));
}
.timeline-node:first-child::before {
  left: 50%;
}
.timeline-node:last-child::before {
  right: 50%;
}
.timeline-dish {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #f6e2bb 0 26%, var(--warm) 27% 66%, var(--warm-deep) 67% 100%);
  border: 2px solid var(--wall-3);
  box-shadow: 0 0 0 1px var(--line), 0 0 12px rgba(232, 178, 92, 0.4);
}
.timeline-dish::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(26, 32, 37, 0.35);
}
.timeline-time {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--warm);
}
.timeline-label {
  font-size: 0.76rem;
  line-height: 1.55;
  color: var(--ink-dim);
}
.episodes-shell {
  padding: 0.9rem clamp(0.85rem, 2.5vw, 1.5rem) 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(35, 42, 48, 0.72), rgba(26, 32, 37, 0.55));
}
.episode-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1rem;
  align-items: start;
}
.episode-column {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.episode-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "sum sum"
    "dur dur";
  gap: 0.25rem 0.6rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--warm-deep);
  border-radius: var(--radius-sm);
  background: rgba(26, 32, 37, 0.55);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.episode-card:hover {
  border-left-color: var(--ember);
  background: rgba(77, 92, 99, 0.3);
  transform: translateX(2px);
}
.episode-number {
  grid-area: num;
  font-family: var(--serif);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--wall-3);
  background: var(--warm);
  border-radius: var(--radius-sm);
  padding: 0.05rem 0.45rem;
  align-self: start;
}
.episode-title {
  grid-area: title;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink);
  align-self: center;
}
.episode-summary {
  grid-area: sum;
  font-size: 0.78rem;
  line-height: 1.62;
  color: var(--ink-dim);
}
.episode-duration {
  grid-area: dur;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  padding-top: 0.25rem;
  border-top: 1px dashed var(--line-soft);
}
.comments-shell {
  padding: 0.9rem clamp(0.85rem, 2.5vw, 1.5rem) 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(35, 42, 48, 0.72), rgba(26, 32, 37, 0.55));
}
.comment-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem 0.9rem;
  align-items: start;
}
.comment-note {
  padding: 0.7rem 0.8rem 0.6rem;
  border-radius: 3px 8px 4px 9px;
  background: linear-gradient(150deg, #f3e7cf, #e6d5b6);
  color: #3a3226;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.38);
  border-bottom: 2px solid rgba(201, 138, 52, 0.4);
  transform: rotate(-0.7deg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.comment-note:nth-child(2n) {
  transform: rotate(0.9deg);
  background: linear-gradient(150deg, #f0e2c6, #e0cda9);
}
.comment-note:nth-child(3n) {
  transform: rotate(-1.3deg);
  background: linear-gradient(150deg, #f6ecd8, #ece0c6);
}
.comment-note:nth-child(5n) {
  transform: rotate(1.4deg);
}
.comment-note:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
}
.comment-text {
  font-size: 0.82rem;
  line-height: 1.68;
  color: #3a3226;
}
.comment-author {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: right;
  color: #8a6f3f;
}
.comment-author::before {
  content: "—— ";
}
.recommend-band {
  padding: 0.8rem clamp(0.85rem, 2.5vw, 1.5rem) 0.95rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
}
.recommend-band[data-recommendation-region="1"] {
  background: linear-gradient(120deg, rgba(77, 92, 99, 0.42), rgba(35, 42, 48, 0.6));
}
.recommend-band[data-recommendation-region="2"] {
  background: linear-gradient(120deg, rgba(201, 138, 52, 0.2), rgba(35, 42, 48, 0.62));
}
.recommend-band[data-recommendation-region="3"] {
  background: linear-gradient(120deg, rgba(224, 112, 58, 0.16), rgba(35, 42, 48, 0.62));
}
.band-title {
  font-family: var(--serif);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--warm);
  margin-bottom: 0.6rem;
  padding-left: 0.6rem;
  border-left: 3px solid var(--ember);
  line-height: 1.3;
}
.band-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
  align-items: start;
}
.band-item {
  min-width: 0;
}
a[data-runtime="recommendation"] {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--ink-dim);
  text-decoration: none;
  padding: 0.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: rgba(26, 32, 37, 0.45);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
a[data-runtime="recommendation"]:hover {
  border-color: var(--warm-deep);
  background: rgba(77, 92, 99, 0.35);
  transform: translateY(-2px);
}
a[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  filter: saturate(0.88) brightness(0.94);
}
a[data-runtime="recommendation"] [data-runtime="name"] {
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.4;
}
a[data-runtime="recommendation"] [data-runtime="blurb"] {
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--ink-faint);
}
.site-footer {
  margin-top: 0.5rem;
  padding: 1.1rem clamp(0.75rem, 3vw, 2rem) 1.4rem;
  background: linear-gradient(180deg, rgba(26, 32, 37, 0.6), rgba(12, 15, 18, 0.9));
  border-top: 1px solid var(--line);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed var(--line-soft);
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.18s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--warm);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.9rem;
  margin-bottom: 0.8rem;
}
.friend-links-title {
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--warm);
  margin-right: 0.3rem;
}
a.runtime-friend-link {
  font-size: 0.75rem;
  color: var(--jade-soft);
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}
a.runtime-friend-link:hover {
  color: var(--warm);
  border-bottom-color: var(--warm);
}
.footer-disclaimer {
  font-size: 0.72rem;
  line-height: 1.7;
  color: var(--ink-faint);
  max-width: 70ch;
}
@media (max-width: 900px) {.overview-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  }
.cast-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.detail-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.band-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.comment-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 720px) {.overview-shell {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "heading"
      "media"
      "info";
  }
.overview-media img {
    aspect-ratio: 16 / 10;
  }
.episode-columns {
    grid-template-columns: minmax(0, 1fr);
  }
.band-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 560px) {body {
    font-size: 13.5px;
  }
.site-header {
    gap: 0.4rem 0.8rem;
  }
.cast-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.band-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-notes {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-note, .comment-note:nth-child(2n), .comment-note:nth-child(3n), .comment-note:nth-child(5n) {
    transform: rotate(0deg);
  }
.timeline-node {
    width: 156px;
  }
.player-controls input[type="range"] {
    flex-basis: 100%;
  }}

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}
