:root {
  --ink: #14181b;
  --asphalt: #1b2124;
  --slate: #2a3237;
  --mist: #3d474d;
  --fog: #6c7880;
  --rain: #98a4ab;
  --pale: #c6cfd4;
  --cold-white: #e8eef1;
  --fluorescent: #d6e4ea;
  --wood-red: #6d2b28;
  --wood-red-dim: #4a1f1d;
  --warm: #e2b25a;
  --warm-dim: #8a6a33;
  --line: rgba(152, 164, 171, 0.18);
  --line-strong: rgba(152, 164, 171, 0.32);
  --surface: #1f2629;
  --surface-2: #232b2f;
  --radius: 3px;
  --gap-tight: 6px;
  --gap: 10px;
  --gap-wide: 16px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: #171c1f;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(61, 71, 77, 0.35), transparent 70%),
    radial-gradient(ellipse 60% 40% at 90% 15%, rgba(42, 50, 55, 0.4), transparent 65%),
    linear-gradient(180deg, #1b2124 0%, #171c1f 40%, #14181b 100%);
  color: var(--pale);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol, dl {
  list-style: none;
}
a {
  color: var(--rain);
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.25;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(20, 24, 27, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.site-brand {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--cold-white);
  text-decoration: none;
  padding-right: 12px;
  border-right: 1px solid var(--line-strong);
  flex: 0 0 auto;
}
.site-brand:hover {
  color: var(--warm);
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 2px;
  flex: 1 1 auto;
  min-width: 0;
}
.runtime-category {
  color: var(--rain);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s;
}
.runtime-category:hover {
  color: var(--cold-white);
  background: rgba(152, 164, 171, 0.14);
}
.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 14px 20px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: var(--gap-wide);
  padding: 16px 0 10px;
  align-items: start;
}
.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0f1214;
  isolation: isolate;
}
.poster-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  max-height: 620px;
  overflow: hidden;
  background: #0f1214;
}
.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: saturate(0.72) contrast(1.05) brightness(0.88);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20, 24, 27, 0.55) 0%, rgba(20, 24, 27, 0.05) 32%, rgba(20, 24, 27, 0.15) 58%, rgba(15, 18, 20, 0.94) 100%),
    linear-gradient(90deg, rgba(20, 24, 27, 0.72) 0%, rgba(20, 24, 27, 0.1) 45%, rgba(20, 24, 27, 0.35) 100%);
}
.hero-slogan {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  padding: 14px 16px 16px;
  max-width: 88%;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}
.hero-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--fluorescent);
  margin-bottom: 6px;
  padding-left: 10px;
  border-left: 2px solid var(--wood-red);
  line-height: 1.6;
}
.hero-title {
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #f2f6f8;
  line-height: 1.05;
}
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  align-self: start;
}
.panel-block {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.panel-block:last-child {
  border-bottom: none;
}
.panel-heading {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--fluorescent);
  margin-bottom: 8px;
  padding-left: 8px;
  border-left: 2px solid var(--warm-dim);
}
.status-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.status-current {
  font-size: 14px;
  font-weight: 800;
  color: var(--warm);
  letter-spacing: 0.03em;
}
.status-total {
  font-size: 11px;
  color: var(--fog);
  letter-spacing: 0.06em;
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(109, 43, 40, 0.4);
}
.player-shell video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 6px 6px;
  background: linear-gradient(180deg, rgba(27, 33, 36, 0.96), rgba(20, 24, 27, 0.99));
  border-top: 1px solid var(--line);
}
.ctrl-btn {
  background: rgba(152, 164, 171, 0.1);
  border: 1px solid var(--line-strong);
  color: var(--pale);
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.ctrl-btn:hover {
  background: rgba(152, 164, 171, 0.22);
  color: var(--cold-white);
}
.ctrl-btn.is-active {
  background: rgba(226, 178, 90, 0.22);
  border-color: var(--warm-dim);
  color: var(--warm);
}
.ctrl-range {
  flex: 1 1 90px;
  min-width: 70px;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(152, 164, 171, 0.28);
  border-radius: 2px;
  cursor: pointer;
  accent-color: var(--warm);
}
.ctrl-range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--warm);
  border: 1px solid #1b2124;
}
.ctrl-range::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--warm);
  border: 1px solid #1b2124;
}
.ctrl-volume {
  flex: 0 1 70px;
  min-width: 50px;
}
.ctrl-select {
  background: rgba(152, 164, 171, 0.1);
  border: 1px solid var(--line-strong);
  color: var(--pale);
  font-size: 11px;
  padding: 3px 4px;
  border-radius: 2px;
  cursor: pointer;
}
.player-shell.is-playing .ctrl-btn[data-player-action="play"] {
  color: var(--warm);
  border-color: var(--warm-dim);
}
.player-shell.is-theater {
  border-color: var(--warm-dim);
}
.player-shell.is-lights-off {
  background: #000;
}
.player-shell.is-lights-off video {
  filter: brightness(1.12) contrast(1.06);
}
.player-shell.is-fullscreen, .player-shell.is-theater {
  border-radius: 0;
}
.player-shell.is-pip .ctrl-btn[data-player-action="pip"] {
  color: var(--warm);
  border-color: var(--warm-dim);
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 14px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 3px 0;
  border-bottom: 1px dashed rgba(152, 164, 171, 0.12);
  min-width: 0;
}
.detail-key {
  flex: 0 0 auto;
  font-size: 11px;
  color: var(--fog);
  letter-spacing: 0.05em;
}
.detail-key::after {
  content: "";
}
.detail-val {
  flex: 1 1 auto;
  font-size: 12px;
  color: var(--cold-white);
  text-align: right;
  min-width: 0;
  overflow-wrap: anywhere;
}
.synopsis-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.synopsis-para {
  font-size: 12px;
  line-height: 1.62;
  color: var(--rain);
  text-align: justify;
}
.synopsis-para:first-child::first-letter {
  color: var(--warm);
  font-weight: 700;
}
.cast-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  align-items: start;
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3px;
  min-width: 0;
}
.cast-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0f1214;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.cast-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) contrast(1.08) brightness(0.86) hue-rotate(-6deg);
  transition: filter 0.25s, transform 0.25s;
}
.cast-card:hover .cast-img {
  filter: saturate(0.8) contrast(1.05) brightness(0.98);
  transform: scale(1.04);
}
.cast-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--cold-white);
  letter-spacing: 0.02em;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.cast-role {
  font-size: 10px;
  color: var(--fog);
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.module-divider {
  border: none;
  height: 1px;
  margin: 14px 0;
  background: linear-gradient(90deg, transparent, var(--line-strong) 12%, var(--line-strong) 88%, transparent);
}
.section-heading {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--cold-white);
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-left: 3px solid var(--wood-red);
  padding-left: 9px;
}
.heading-count {
  font-size: 10px;
  font-weight: 600;
  color: var(--warm);
  letter-spacing: 0.02em;
  padding: 1px 5px;
  border: 1px solid var(--warm-dim);
  border-radius: 2px;
  line-height: 1.4;
}
.timeline-section {
  padding: 2px 0;
}
.timeline-rail {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 16px 0 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(42, 50, 55, 0.35), rgba(27, 33, 36, 0.5));
  scrollbar-width: thin;
  scrollbar-color: var(--mist) transparent;
}
.timeline-rail::-webkit-scrollbar {
  height: 6px;
}
.timeline-rail::-webkit-scrollbar-thumb {
  background: var(--mist);
  border-radius: 3px;
}
.timeline-rail::-webkit-scrollbar-track {
  background: rgba(152, 164, 171, 0.08);
}
.timeline-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: min-content;
  position: relative;
  padding: 0 18px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 4%, var(--line-strong) 96%, transparent);
  z-index: 0;
}
.timeline-node {
  position: relative;
  flex: 0 0 auto;
  width: 178px;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.node-drop {
  width: 13px;
  height: 13px;
  margin-left: 0;
  background: var(--rain);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 3px rgba(27, 33, 36, 0.9);
}
.node-timecode {
  font-size: 11px;
  font-weight: 800;
  color: var(--fluorescent);
  letter-spacing: 0.06em;
}
.node-label {
  font-size: 11px;
  line-height: 1.55;
  color: var(--fog);
  overflow-wrap: anywhere;
}
.timeline-node.is-current .node-drop {
  background: var(--warm);
  box-shadow: 0 0 0 3px rgba(27, 33, 36, 0.9), 0 0 12px 2px rgba(226, 178, 90, 0.55);
}
.timeline-node.is-current .node-timecode {
  color: var(--warm);
}
.timeline-node.is-current .node-label {
  color: var(--pale);
}
.episodes-section {
  padding: 2px 0;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.episode-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 8px;
  padding: 7px 9px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 2px solid rgba(109, 43, 40, 0.55);
  border-radius: 2px;
  transition: background 0.18s, border-color 0.18s;
  min-width: 0;
}
.episode-card:hover {
  background: #283136;
  border-left-color: var(--warm);
}
.episode-number {
  font-size: 19px;
  font-weight: 900;
  color: var(--mist);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.episode-card.is-current .episode-number {
  color: var(--warm);
}
.episode-card.is-current {
  border-left-color: var(--warm);
  background: #2b3236;
}
.episode-body {
  min-width: 0;
}
.episode-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--cold-white);
  letter-spacing: 0.01em;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.episode-summary {
  font-size: 11px;
  line-height: 1.5;
  color: var(--fog);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease, margin-top 0.2s ease;
  overflow-wrap: anywhere;
}
.episode-card:hover .episode-summary, .episode-card:focus-within .episode-summary {
  max-height: 80px;
  opacity: 1;
  margin-top: 4px;
}
.episode-duration {
  font-size: 10px;
  color: var(--rain);
  letter-spacing: 0.04em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.comments-section {
  padding: 2px 0;
}
.comment-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  align-items: start;
}
.comment-note {
  position: relative;
  padding: 9px 11px 9px 13px;
  background:
    linear-gradient(180deg, rgba(48, 57, 62, 0.92), rgba(38, 46, 50, 0.92)),
    radial-gradient(circle at 80% 110%, rgba(152, 164, 171, 0.14), transparent 55%);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  min-width: 0;
}
.comment-note::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  bottom: 9px;
  width: 2px;
  background: rgba(109, 43, 40, 0.6);
  border-radius: 1px;
}
.comment-note:nth-child(odd) {
  transform: rotate(-0.35deg);
}
.comment-note:nth-child(even) {
  transform: rotate(0.4deg);
}
.comment-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--pale);
  overflow-wrap: anywhere;
}
.comment-author {
  display: inline-block;
  margin-top: 6px;
  font-size: 10.5px;
  color: var(--warm);
  letter-spacing: 0.05em;
}
.comment-author::before {
  content: "— ";
  color: var(--fog);
}
.rec-region {
  padding: 4px 0 6px;
}
.rec-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  border-left: 3px solid var(--wood-red);
  padding-left: 9px;
}
.rec-heading {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--cold-white);
}
.rec-count {
  font-size: 10px;
  font-weight: 700;
  color: var(--fog);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  order: 2;
  margin-left: -2px;
  align-self: flex-start;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 0 3px;
  line-height: 1.5;
}
.rec-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(148px, 1fr);
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--mist) transparent;
}
.rec-track::-webkit-scrollbar {
  height: 5px;
}
.rec-track::-webkit-scrollbar-thumb {
  background: var(--mist);
  border-radius: 3px;
}
.rec-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 6px;
  color: var(--rain);
  text-decoration: none;
  min-width: 0;
  transition: border-color 0.18s, background 0.18s, transform 0.18s;
  align-self: start;
}
.rec-card:hover {
  border-color: var(--warm-dim);
  background: #262f33;
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  background: #0f1214;
  filter: saturate(0.7) brightness(0.92);
}
.rec-card:hover .rec-img {
  filter: saturate(0.95) brightness(1.02);
}
.rec-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--cold-white);
  line-height: 1.35;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}
.rec-blurb {
  font-size: 10.5px;
  line-height: 1.45;
  color: var(--fog);
  overflow-wrap: anywhere;
}
.rec-region-bright {
  background: linear-gradient(180deg, rgba(226, 178, 90, 0.06), transparent 70%);
  border-top: 1px solid rgba(226, 178, 90, 0.18);
  border-bottom: 1px solid rgba(226, 178, 90, 0.18);
  padding: 10px 0;
  margin-top: 2px;
}
.rec-region-bright .rec-heading {
  color: #f4e6c8;
}
.rec-region-bright .rec-count {
  color: var(--warm);
  border-color: var(--warm-dim);
}
.rec-region-bright .rec-card {
  background: #2a3237;
  border-color: rgba(226, 178, 90, 0.2);
}
.rec-region-bright .rec-card:hover {
  border-color: var(--warm);
  background: #303a3f;
}
.rec-region-bright .rec-name {
  color: #f6f0e2;
}
.rec-region-bright [data-runtime="recommendation"] img {
  filter: saturate(0.82) brightness(1);
}
.site-footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 14px 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: var(--fog);
  max-width: 760px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.footer-link {
  font-size: 12px;
  color: var(--fluorescent);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.footer-link:hover {
  color: var(--warm);
  border-bottom-color: var(--warm-dim);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  padding-top: 6px;
  border-top: 1px dashed var(--line);
}
.friend-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--rain);
  letter-spacing: 0.08em;
  padding-right: 8px;
  border-right: 1px solid var(--line-strong);
}
.runtime-friend-link {
  font-size: 11px;
  color: var(--fog);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.runtime-friend-link:hover {
  color: var(--pale);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 1024px) {.hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
.poster-frame {
    max-height: 520px;
  }
.hero-slogan {
    max-width: 92%;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 760px) {body {
    font-size: 12.5px;
  }
.page-main {
    padding: 0 10px 16px;
  }
.header-inner {
    padding: 7px 10px;
    gap: 8px;
  }
.site-brand {
    font-size: 14px;
    padding-right: 9px;
  }
.hero {
    padding-top: 12px;
  }
.poster-frame {
    aspect-ratio: 3 / 4;
    max-height: 440px;
  }
.hero-title {
    font-size: clamp(26px, 9vw, 40px);
  }
.hero-tagline {
    font-size: 11px;
  }
.hero-panel {
    padding: 0 11px;
  }
.detail-list {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-summary {
    max-height: none;
    opacity: 1;
    margin-top: 4px;
  }
.comment-notes {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-note:nth-child(odd), .comment-note:nth-child(even) {
    transform: none;
  }
.rec-track {
    grid-auto-columns: minmax(132px, 1fr);
  }
.timeline-node {
    width: 158px;
  }}
@media (max-width: 480px) {.header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
.site-brand {
    border-right: none;
    padding-right: 0;
  }
.cast-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.player-controls {
    gap: 3px;
    padding: 5px;
  }
.ctrl-btn {
    font-size: 10px;
    padding: 3px 5px;
  }
.ctrl-range {
    flex: 1 1 100%;
    order: 5;
  }
.rec-track {
    grid-auto-columns: minmax(120px, 1fr);
  }
.timeline-node {
    width: 142px;
    padding: 0 8px;
  }
.episode-number {
    font-size: 17px;
  }}
@media (prefers-reduced-motion: reduce) {* {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }}

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}
