*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body, h1, h2, h3, p, figure, ol, ul, dl, dd, dt {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
button, input {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
:root {
  --ink-deep: #0d1c22;
  --ink-teal: #14282f;
  --ink-teal-2: #1b343c;
  --brown-warm: #3a2c22;
  --brown-warm-2: #4a3729;
  --moon-white: #e9eee9;
  --moon-dim: #b8c3be;
  --moon-faint: #8b9a95;
  --gold: #d4a24c;
  --gold-soft: #c8973f;
  --gold-deep: #a87c2c;
  --scale-line: rgba(212, 162, 76, 0.55);
  --rule: rgba(184, 195, 190, 0.16);
  --rule-strong: rgba(184, 195, 190, 0.28);
  --panel-bg: rgba(20, 40, 47, 0.55);
  --panel-bg-2: rgba(26, 48, 56, 0.72);
  --serif: "Songti SC", "SimSun", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", "Noto Sans CJK SC", sans-serif;
  --gap: 14px;
  --gap-tight: 8px;
  --radius: 3px;
}
body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--moon-dim);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(233, 238, 233, 0.14) 0%, rgba(233, 238, 233, 0) 42%),
    linear-gradient(158deg, var(--ink-deep) 0%, var(--ink-teal) 38%, var(--brown-warm) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: var(--gap);
  flex-wrap: wrap;
  padding: 9px 16px;
  background: linear-gradient(180deg, rgba(13, 28, 34, 0.96) 0%, rgba(20, 40, 47, 0.86) 100%);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.header-brand {
  flex: 0 0 auto;
  min-width: 0;
}
a.site-brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--moon-white);
  text-decoration: none;
  text-shadow: 0 0 18px rgba(233, 238, 233, 0.18);
  display: inline-block;
  padding-right: 2px;
  border-bottom: 2px solid transparent;
}
a.site-brand:hover, a.site-brand:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.categories-shell {
  flex: 1 1 200px;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12.5px;
  line-height: 1.4;
  padding: 3px 8px;
  color: var(--moon-dim);
  text-decoration: none;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(233, 238, 233, 0.04);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--ink-deep);
  background: var(--gold);
  border-color: var(--gold);
}
.header-nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
a.header-nav-link {
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  padding: 4px 10px;
  color: var(--moon-dim);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.04em;
}
a.header-nav-link:hover, a.header-nav-link:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.page-main {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 16px 0;
}
.block-heading {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--moon-white);
  line-height: 1.4;
}
.movie-overview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(233, 238, 233, 0.1) 0%, rgba(233, 238, 233, 0) 55%),
    linear-gradient(160deg, rgba(20, 40, 47, 0.9) 0%, rgba(58, 44, 34, 0.72) 100%);
  overflow: hidden;
}
.overview-poster-col {
  position: relative;
  align-self: start;
}
.poster-frame {
  position: relative;
  display: block;
  margin: 0;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-deep);
  box-shadow: 0 14px 34px -18px rgba(0, 0, 0, 0.9);
}
.poster-image {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
}
.poster-glow {
  position: absolute;
  inset: auto -18% -12% -18%;
  height: 46%;
  pointer-events: none;
  background: radial-gradient(60% 100% at 50% 0%, rgba(212, 162, 76, 0.24) 0%, rgba(212, 162, 76, 0) 70%);
  z-index: 0;
}
.overview-info-col {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  min-width: 0;
}
.overview-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.movie-title {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--moon-white);
}
.movie-tagline {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}
.movie-seo {
  font-size: 13px;
  line-height: 1.72;
  color: var(--moon-faint);
}
.overview-player {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  background: #060d10;
  overflow: hidden;
}
.player-video {
  display: block;
  width: 100%;
  background: #060d10;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px;
  background: linear-gradient(180deg, rgba(13, 28, 34, 0.9) 0%, rgba(6, 13, 16, 0.96) 100%);
  border-top: 1px solid var(--rule);
}
.player-btn {
  flex: 0 0 auto;
  font-size: 12px;
  line-height: 1.3;
  padding: 4px 9px;
  color: var(--moon-dim);
  background: rgba(233, 238, 233, 0.05);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.player-btn:hover, .player-btn:focus-visible {
  color: var(--ink-deep);
  background: var(--gold);
  border-color: var(--gold);
}
.player-range {
  flex: 1 1 120px;
  min-width: 90px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(184, 195, 190, 0.24);
  border-radius: 999px;
  cursor: pointer;
  accent-color: var(--gold);
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
}
.player-range::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
}
.player-range-volume {
  flex: 0 1 84px;
  min-width: 60px;
}
.overview-player.is-theater {
  position: fixed;
  inset: 0;
  z-index: 90;
  width: 100%;
  height: 100%;
  max-width: none;
  border: 0;
  border-radius: 0;
  background: #000;
  justify-content: center;
}
.overview-player.is-theater .player-video {
  flex: 1 1 auto;
  min-height: 0;
  object-fit: contain;
}
.overview-player.is-lights-off {
  background: #000;
}
.overview-player.is-lights-off .player-video {
  filter: brightness(0.5) contrast(1.05);
}
.overview-player.is-lights-off .player-controls {
  opacity: 0.55;
}
.cast-strip {
  display: flex;
  flex-direction: column;
  gap: var(--gap-tight);
  padding: 12px 0 2px;
  border-top: 1px solid var(--rule);
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 14px;
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  width: 64px;
}
.cast-avatar {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(233, 238, 233, 0.22) 0%, rgba(233, 238, 233, 0) 60%),
    linear-gradient(150deg, var(--ink-teal-2) 0%, var(--brown-warm-2) 100%);
  box-shadow: inset 0 0 0 1px rgba(212, 162, 76, 0.16);
}
.cast-name {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  color: var(--moon-dim);
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0.02em;
}
.synopsis-panel {
  display: flex;
  flex-direction: column;
  gap: var(--gap-tight);
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.synopsis-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.synopsis-paragraph {
  font-size: 13px;
  line-height: 1.78;
  color: var(--moon-dim);
  padding-left: 10px;
  border-left: 2px solid rgba(212, 162, 76, 0.32);
}
.episode-status {
  display: flex;
  flex-direction: column;
  gap: var(--gap-tight);
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.status-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.status-label {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--moon-white);
  background: rgba(212, 162, 76, 0.12);
  border: 1px solid rgba(212, 162, 76, 0.34);
  border-radius: var(--radius);
  padding: 2px 9px;
}
.status-sep {
  color: var(--gold-deep);
  font-weight: 700;
}
.details-panel {
  display: flex;
  flex-direction: column;
  gap: var(--gap-tight);
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 2px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 3px 0;
  border-bottom: 1px dotted rgba(184, 195, 190, 0.18);
  min-width: 0;
}
.detail-key {
  flex: 0 0 auto;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--moon-faint);
}
.detail-value {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12.5px;
  color: var(--moon-white);
  text-align: right;
  overflow-wrap: anywhere;
}
.timeline-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(20, 40, 47, 0.6) 0%, rgba(58, 44, 34, 0.4) 100%);
}
.timeline-heading {
  padding-bottom: 2px;
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
  counter-reset: tl;
}
.timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 10px 10px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: rgba(233, 238, 233, 0.03);
  min-width: 0;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink-teal);
  border: 1px solid var(--moon-faint);
}
.timeline-node::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -10px;
  right: calc(100% - 10px);
  height: 1px;
  background: var(--rule-strong);
}
.timeline-node:first-child::after {
  display: none;
}
.node-timecode {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
}
.node-label {
  font-size: 12px;
  line-height: 1.6;
  color: var(--moon-dim);
}
.timeline-node-current {
  border-color: var(--scale-line);
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(212, 162, 76, 0.09) 0px,
      rgba(212, 162, 76, 0.09) 2px,
      rgba(212, 162, 76, 0) 2px,
      rgba(212, 162, 76, 0) 6px
    ),
    linear-gradient(150deg, rgba(212, 162, 76, 0.14) 0%, rgba(58, 44, 34, 0.5) 100%);
  box-shadow: 0 0 0 1px rgba(212, 162, 76, 0.22), 0 10px 26px -18px rgba(212, 162, 76, 0.7);
}
.timeline-node-current::before {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 10px 1px rgba(212, 162, 76, 0.7);
}
.timeline-node-current .node-timecode {
  color: var(--gold);
}
.timeline-node-current .node-label {
  color: var(--moon-white);
}
.episodes-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.episodes-heading {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--rule);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.episode-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-left: 2px solid rgba(184, 195, 190, 0.3);
  border-radius: var(--radius);
  background: rgba(20, 40, 47, 0.42);
  min-width: 0;
}
.episode-number {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--moon-faint);
  min-width: 30px;
  text-align: center;
  padding-top: 2px;
}
.episode-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1 1 auto;
}
.episode-title {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: var(--moon-white);
}
.episode-summary {
  font-size: 12px;
  line-height: 1.62;
  color: var(--moon-faint);
}
.episode-duration {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
}
.episode-card-current {
  border-color: var(--scale-line);
  border-left-color: var(--gold);
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(212, 162, 76, 0.07) 0px,
      rgba(212, 162, 76, 0.07) 2px,
      rgba(212, 162, 76, 0) 2px,
      rgba(212, 162, 76, 0) 6px
    ),
    linear-gradient(150deg, rgba(212, 162, 76, 0.12) 0%, rgba(58, 44, 34, 0.44) 100%);
}
.episode-card-current .episode-number {
  color: var(--gold);
}
.episode-card-current .episode-summary {
  color: var(--moon-dim);
}
.comments-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: linear-gradient(200deg, rgba(58, 44, 34, 0.44) 0%, rgba(20, 40, 47, 0.55) 100%);
}
.comments-heading {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--rule);
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.comment-card {
  display: grid;
  grid-template-columns: minmax(0, 84px) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 8px 10px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: rgba(233, 238, 233, 0.035);
  min-width: 0;
}
.comment-nickname {
  font-family: var(--serif);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
  border-right: 1px solid var(--rule);
  padding-right: 8px;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.66;
  color: var(--moon-dim);
  min-width: 0;
}
.recommend-region {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: rgba(20, 40, 47, 0.4);
}
.region-1 {
  background: linear-gradient(120deg, rgba(20, 40, 47, 0.6) 0%, rgba(13, 28, 34, 0.5) 100%);
}
.region-2 {
  background: linear-gradient(120deg, rgba(58, 44, 34, 0.46) 0%, rgba(20, 40, 47, 0.5) 100%);
}
.region-3 {
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(212, 162, 76, 0.1) 0%, rgba(212, 162, 76, 0) 60%),
    rgba(20, 40, 47, 0.46);
}
.recommend-heading {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--rule);
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 10px;
  align-items: start;
}
.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: rgba(13, 28, 34, 0.5);
  color: var(--moon-dim);
  text-decoration: none;
  min-width: 0;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.recommend-card:hover, .recommend-card:focus-visible {
  border-color: var(--scale-line);
  background: rgba(26, 48, 56, 0.72);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img, .recommend-pic {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  background: var(--ink-deep);
}
.recommend-name {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--moon-white);
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recommend-card:hover .recommend-name, .recommend-card:focus-visible .recommend-name {
  color: var(--gold);
}
.recommend-blurb {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--moon-faint);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px;
  border-top: 1px solid var(--rule);
}
.footer-disclaimer {
  flex: 1 1 100%;
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--moon-faint);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
}
a.footer-link {
  font-size: 12.5px;
  color: var(--moon-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
a.footer-link:hover, a.footer-link:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
  flex: 1 1 320px;
  min-width: 0;
}
.friend-links-label {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--moon-faint);
  border-right: 1px solid var(--rule);
  padding-right: 10px;
}
a.runtime-friend-link {
  font-size: 12px;
  color: var(--moon-faint);
  text-decoration: none;
  white-space: nowrap;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 900px) {.movie-overview {
    grid-template-columns: minmax(0, 232px) minmax(0, 1fr);
    gap: 16px;
  }
.timeline-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.timeline-node:nth-child(4)::after {
    display: none;
  }}
@media (max-width: 780px) {.movie-overview {
    grid-template-columns: minmax(0, 1fr);
  }
.overview-poster-col {
    max-width: 300px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 620px) {body {
    font-size: 13.5px;
  }
.page-main {
    padding: 12px 12px 0;
  }
.site-header {
    padding: 8px 12px;
    gap: 8px;
  }
a.site-brand {
    font-size: 17px;
  }
.header-nav {
    margin-left: 0;
  }
.movie-title {
    font-size: 22px;
  }
.movie-overview {
    padding: 14px;
    gap: 14px;
  }
.timeline-track {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
.timeline-node::after {
    display: none;
  }
.timeline-node::before {
    top: 12px;
    left: -5px;
  }
.timeline-node {
    padding-left: 14px;
  }
.overview-poster-col {
    max-width: 220px;
  }
.cast-list {
    gap: 8px 10px;
  }
.cast-card {
    width: 58px;
  }
.cast-avatar {
    width: 40px;
    height: 40px;
  }
.comment-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }
.comment-nickname {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding-right: 0;
    padding-bottom: 3px;
  }
.recommend-grid {
    grid-template-columns: repeat(auto-fill, minmax(134px, 1fr));
    gap: 8px;
  }
.player-btn {
    font-size: 11.5px;
    padding: 4px 7px;
  }
.site-footer {
    padding: 14px 12px;
  }}
@media (max-width: 400px) {.recommend-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.player-range-volume {
    flex: 1 1 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}
