:root {
  --darkroom-black: #0a0708;
  --darkroom-coal: #14100f;
  --darkroom-panel: #1a1312;
  --darkroom-panel-2: #201716;
  --red-deep: #4a0d12;
  --red-mid: #7a1218;
  --red-glow: #b81f26;
  --red-bright: #e0343b;
  --warm-white: #f2e6dc;
  --warm-grey: #c9b6a9;
  --muted-grey: #8d7a70;
  --line: #33211f;
  --line-soft: #2a1a19;
  --serif: "Songti SC", "STSong", "SimSun", "Noto Serif SC", Georgia, serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", "Noto Sans SC", Arial, sans-serif;
  --tight: 0.9rem;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background-color: var(--darkroom-black);
  background-image:
    radial-gradient(ellipse 80% 55% at 18% 0%, rgba(122, 18, 24, 0.30), transparent 60%),
    radial-gradient(ellipse 60% 40% at 92% 8%, rgba(74, 13, 18, 0.35), transparent 65%),
    linear-gradient(180deg, #0c0809 0%, #0a0708 40%, #0c0808 100%);
  background-attachment: fixed;
  color: var(--warm-white);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-feature-settings: "tnum" 1;
  min-height: 100vh;
  overflow-x: hidden;
}
img, video {
  display: block;
  max-width: 100%;
}
ul, ol {
  list-style: none;
}
a {
  color: var(--warm-grey);
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
::selection {
  background: var(--red-mid);
  color: var(--warm-white);
}
.site-header {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(32, 12, 14, 0.92) 0%, rgba(16, 9, 9, 0.88) 100%);
  backdrop-filter: blur(2px);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem clamp(0.7rem, 2vw, 1.6rem);
  border-bottom: 1px solid var(--line-soft);
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}
a[data-contract="site-name"] {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--warm-white);
  text-decoration: none;
  border-left: 3px solid var(--red-glow);
  padding-left: 0.55rem;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(184, 31, 38, 0.5);
}
a[data-contract="site-name"]:hover {
  color: var(--red-bright);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}
a.header-nav-link {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: var(--warm-grey);
  text-decoration: none;
  padding: 0.3rem 0.62rem;
  border: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
a.header-nav-link:hover {
  color: var(--warm-white);
  border-color: var(--red-mid);
  background: rgba(122, 18, 24, 0.22);
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  padding: 0.42rem clamp(0.7rem, 2vw, 1.6rem) 0.5rem;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}
a.runtime-category {
  display: inline-block;
  font-size: 0.73rem;
  letter-spacing: 0.09em;
  white-space: nowrap;
  color: var(--warm-grey);
  text-decoration: none;
  padding: 0.16rem 0.5rem;
  border: 1px solid var(--line);
  background: rgba(20, 16, 15, 0.7);
  transition: color 0.15s, border-color 0.15s;
}
a.runtime-category:hover {
  color: var(--warm-white);
  border-color: var(--red-glow);
  background: rgba(74, 13, 18, 0.5);
}
.page-main {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(0.7rem, 2vw, 1.6rem) 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.section-heading {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--warm-white);
  padding: 0 0 0.28rem 0.6rem;
  border-left: 3px solid var(--red-glow);
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.movie-overview {
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(32, 12, 14, 0.55) 0%, rgba(12, 8, 8, 0.9) 55%),
    var(--darkroom-panel);
  position: relative;
}
.movie-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 12% 18%, rgba(184, 31, 38, 0.16), transparent 42%);
}
.overview-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(200px, 268px) minmax(0, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  padding: clamp(0.7rem, 1.8vw, 1.25rem);
  align-items: start;
}
.poster-column {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-self: start;
  margin: 0;
}
.poster-frame {
  position: relative;
  width: 100%;
  border: 1px solid var(--line);
  background: #0b0707;
  padding: 4px;
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 4px;
  pointer-events: none;
  box-shadow: inset 0 0 60px rgba(184, 31, 38, 0.28);
}
.poster-image {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  filter: contrast(1.06) saturate(0.94);
}
.poster-caption {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--muted-grey);
  text-align: center;
  border-top: 1px solid var(--line-soft);
  padding-top: 0.3rem;
}
.overview-info {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}
.title-block {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5rem;
}
.movie-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.14;
  color: var(--warm-white);
  text-shadow: 0 0 18px rgba(224, 52, 59, 0.28);
}
.movie-tagline {
  margin-top: 0.28rem;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  color: var(--red-bright);
  font-family: var(--serif);
}
.overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.79rem;
  letter-spacing: 0.14em;
  padding: 0.36rem 0.85rem;
  cursor: pointer;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--warm-grey);
  border-radius: 0;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red-mid);
  border-color: var(--red-glow);
  color: var(--warm-white);
  font-weight: 600;
}
.btn-primary:hover, .btn-primary.is-playing {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: #fff;
}
.btn-ghost {
  background: rgba(20, 16, 15, 0.6);
  color: var(--warm-grey);
}
.btn-ghost:hover, .btn-ghost.is-active {
  color: var(--warm-white);
  border-color: var(--red-glow);
  background: rgba(74, 13, 18, 0.45);
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background: #000;
}
.player-video {
  width: 100%;
  display: block;
  background: #000;
  aspect-ratio: 16 / 9;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.5rem;
  background: linear-gradient(180deg, rgba(20, 16, 15, 0.96), rgba(10, 7, 8, 0.98));
  border-top: 1px solid var(--line);
}
.player-control {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.24rem 0.55rem;
  background: rgba(32, 23, 22, 0.9);
  border: 1px solid var(--line);
  color: var(--warm-grey);
  cursor: pointer;
  border-radius: 0;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.player-control:hover, .player-control.is-active {
  color: var(--warm-white);
  border-color: var(--red-glow);
}
.player-control.is-playing {
  color: var(--red-bright);
  border-color: var(--red-mid);
}
.player-control.is-muted {
  color: var(--red-bright);
  border-color: var(--red-mid);
}
.player-progress {
  flex: 1 1 140px;
  min-width: 90px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--line);
  border-radius: 0;
  cursor: pointer;
}
.player-volume {
  flex: 0 1 80px;
  min-width: 56px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--line);
  border-radius: 0;
  cursor: pointer;
}
.player-progress::-webkit-slider-thumb, .player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 14px;
  background: var(--red-bright);
  border: none;
  cursor: pointer;
}
.player-progress::-moz-range-thumb, .player-volume::-moz-range-thumb {
  width: 10px;
  height: 14px;
  background: var(--red-bright);
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.player-speed {
  font-size: 0.72rem;
  padding: 0.24rem 0.4rem;
  background: rgba(32, 23, 22, 0.9);
  border: 1px solid var(--line);
  color: var(--warm-grey);
  border-radius: 0;
  cursor: pointer;
}
.overview-description {
  font-size: 0.85rem;
  line-height: 1.62;
  color: var(--warm-grey);
  border-left: 2px solid var(--red-deep);
  padding-left: 0.6rem;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.status-item {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--warm-white);
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--line);
  background: rgba(74, 13, 18, 0.32);
}
.details {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 0.4rem 0;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.1rem;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.16rem 0;
  border-bottom: 1px dotted var(--line-soft);
  min-width: 0;
}
.detail-key {
  flex: 0 0 auto;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--muted-grey);
  min-width: 3.6em;
}
.detail-value {
  flex: 1 1 auto;
  font-size: 0.78rem;
  color: var(--warm-white);
  min-width: 0;
  word-break: break-word;
}
.synopsis {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}
.synopsis .section-heading {
  margin-bottom: 0.3rem;
}
.synopsis-paragraph {
  font-size: 0.83rem;
  line-height: 1.64;
  color: var(--warm-grey);
  text-indent: 1.6em;
}
.cast .section-heading {
  margin-bottom: 0.5rem;
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
}
.cast-card {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--line);
  border-left: 2px solid var(--red-deep);
  background: rgba(26, 19, 18, 0.6);
  min-width: 0;
}
.cast-name {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--warm-white);
}
.cast-role {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--muted-grey);
}
.timeline-section {
  border-top: 1px solid var(--line);
  padding-top: 0.55rem;
}
.timeline-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-left: 0.2rem;
}
.timeline-list::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  bottom: 0.2rem;
  left: 9.6rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line) 8%, var(--line) 92%, transparent);
}
.timeline-node {
  position: relative;
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: 1.4rem;
  align-items: baseline;
  padding: 0.3rem 0.5rem 0.3rem 0;
  border-bottom: 1px dotted var(--line-soft);
  opacity: 0.42;
  transition: opacity 0.4s ease, background 0.4s ease;
}
.timeline-node::after {
  content: "";
  position: absolute;
  left: 9.6rem;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  margin-left: -3px;
  background: var(--darkroom-black);
  border: 1px solid var(--muted-grey);
  transform: rotate(45deg);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.timeline-node.is-active {
  opacity: 1;
  background: linear-gradient(90deg, rgba(74, 13, 18, 0.28), transparent 70%);
}
.timeline-node.is-active::after {
  background: var(--red-bright);
  border-color: var(--red-bright);
  box-shadow: 0 0 10px rgba(224, 52, 59, 0.9);
}
.timeline-timecode {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--red-bright);
  white-space: nowrap;
  text-align: right;
  padding-right: 0.55rem;
}
.timeline-label {
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--warm-grey);
  min-width: 0;
}
.timeline-node.is-active .timeline-label {
  color: var(--warm-white);
}
.episodes-section {
  border-top: 1px solid var(--line);
  padding-top: 0.55rem;
}
.episode-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(228px, 1fr);
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.6rem;
  scrollbar-width: thin;
  scrollbar-color: var(--red-mid) var(--darkroom-coal);
  align-items: start;
}
.episode-rail::-webkit-scrollbar {
  height: 7px;
}
.episode-rail::-webkit-scrollbar-track {
  background: var(--darkroom-coal);
}
.episode-rail::-webkit-scrollbar-thumb {
  background: var(--red-mid);
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.55rem 0.6rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(32, 23, 22, 0.85), rgba(16, 11, 11, 0.9));
  min-width: 0;
  scroll-snap-align: start;
}
.episode-number {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--red-bright);
}
.episode-title {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--warm-white);
  line-height: 1.25;
}
.episode-summary {
  font-size: 0.76rem;
  line-height: 1.55;
  color: var(--muted-grey);
  flex: 1 1 auto;
}
.episode-duration {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--warm-grey);
  padding-top: 0.28rem;
  border-top: 1px solid var(--line-soft);
}
.recommend-region {
  border-top: 1px solid var(--line);
  padding-top: 0.55rem;
}
.recommend-title {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--warm-white);
  margin-bottom: 0.5rem;
  padding-left: 0.55rem;
  border-left: 2px solid var(--red-glow);
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.5rem;
  align-items: start;
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
  border: 1px solid var(--line);
  background: var(--darkroom-panel);
  color: var(--warm-grey);
  text-decoration: none;
  padding: 0.35rem;
  min-width: 0;
  transition: border-color 0.15s, background 0.15s;
}
a.recommend-card:hover {
  border-color: var(--red-glow);
  background: rgba(32, 23, 22, 0.95);
}
[data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  display: block;
  background: #000;
  filter: contrast(1.05) saturate(0.92);
}
.recommend-name {
  font-family: var(--serif);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--warm-white);
  line-height: 1.3;
}
.recommend-blurb {
  font-size: 0.7rem;
  line-height: 1.45;
  color: var(--muted-grey);
}
.comments-section {
  border-top: 1px solid var(--line);
  padding-top: 0.55rem;
}
.comments-clothesline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.9rem;
  align-items: start;
}
.comment-card {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(28, 20, 19, 0.9), rgba(14, 10, 10, 0.92));
  position: relative;
  min-width: 0;
}
.comment-card::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  background: var(--red-mid);
  border: 1px solid var(--red-glow);
  transform: rotate(45deg);
}
.comments-clothesline .comment-card:nth-child(even) {
  transform: translateY(0.9rem);
}
.comment-nickname {
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--red-bright);
}
.comment-text {
  font-size: 0.79rem;
  line-height: 1.58;
  color: var(--warm-grey);
}
.site-footer {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0.9rem clamp(0.7rem, 2vw, 1.6rem) 1.6rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--warm-grey);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--warm-white);
  border-bottom-color: var(--red-glow);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.75rem;
  padding: 0.5rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.friend-links-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--red-bright);
  padding-right: 0.5rem;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted-grey);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
a.runtime-friend-link:hover {
  color: var(--warm-white);
  text-decoration: underline;
  text-decoration-color: var(--red-glow);
}
.footer-disclaimer {
  font-size: 0.68rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #6b5a52;
  max-width: 72ch;
}
.lights-off {
  background-image: none;
  background-color: #050303;
}
.lights-off .movie-overview {
  background: #060303;
}
.lights-off .poster-image {
  filter: contrast(1.1) saturate(0.8) brightness(0.85);
}
.player-shell.is-theater {
  border-color: var(--red-glow);
  box-shadow: 0 0 0 1px rgba(224, 52, 59, 0.35), 0 0 40px rgba(184, 31, 38, 0.35);
}
.player-shell.is-playing .player-controls {
  border-top-color: var(--red-mid);
}
.player-control:fullscreen {
  background: #000;
}
@media (max-width: 1080px) {.overview-shell {
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  }
.cast-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.overview-shell {
    grid-template-columns: minmax(150px, 200px) minmax(0, 1fr);
  }
.detail-list {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-list::before, .timeline-node::after {
    left: 7.6rem;
  }
.timeline-node {
    grid-template-columns: 7rem minmax(0, 1fr);
    gap: 1rem;
  }}
@media (max-width: 680px) {body {
    font-size: 14px;
  }
.overview-shell {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-column {
    max-width: 260px;
  }
.poster-frame {
    max-width: 260px;
  }
.cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comments-clothesline {
    grid-template-columns: minmax(0, 1fr);
  }
.comments-clothesline .comment-card:nth-child(even) {
    transform: none;
  }
.timeline-list::before {
    left: 0.32rem;
  }
.timeline-node {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.18rem;
    padding-left: 1.35rem;
  }
.timeline-node::after {
    left: 0.32rem;
    top: 0.5rem;
  }
.timeline-timecode {
    text-align: left;
    padding-right: 0;
  }
.episode-rail {
    grid-auto-columns: minmax(200px, 82%);
  }}
@media (max-width: 460px) {.header-bar {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
.header-nav {
    gap: 0.1rem;
  }
a.header-nav-link {
    padding: 0.24rem 0.42rem;
    font-size: 0.76rem;
  }
.overview-actions {
    gap: 0.3rem;
  }
.btn {
    padding: 0.32rem 0.6rem;
    font-size: 0.74rem;
  }
.cast-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-rail {
    grid-auto-columns: minmax(180px, 88%);
  }
.player-controls {
    gap: 0.28rem;
  }
.player-control {
    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}
