:root {
  --ink-900: #0d1216;
  --ink-800: #12181d;
  --ink-700: #182027;
  --ink-600: #1f2a32;
  --steel-500: #3a4854;
  --steel-400: #5a6b78;
  --steel-300: #8b9aa6;
  --steel-200: #b8c4cd;
  --steel-100: #dfe6ea;
  --teal-700: #0f3d44;
  --teal-500: #1c6a72;
  --teal-300: #3fa0a8;
  --teal-glow: rgba(63, 160, 168, 0.35);
  --orange-500: #e8620f;
  --orange-400: #ff7a2f;
  --orange-glow: rgba(255, 122, 47, 0.4);
  --line: rgba(139, 154, 166, 0.18);
  --line-strong: rgba(139, 154, 166, 0.32);
  --surface: #141b20;
  --surface-2: #1a232a;
  --font: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", "Cascadia Code", "JetBrains Mono", Consolas, "Liberation Mono", Menlo, monospace;
  --gap: 12px;
  --pad: 14px;
  --radius: 4px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(120% 55% at 50% -8%, var(--teal-700) 0%, transparent 62%),
    linear-gradient(180deg, #0f1519 0%, #101a1e 42%, #0d1216 100%);
  background-attachment: fixed;
  color: var(--steel-200);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
body.lights-dim {
  filter: brightness(0.72) saturate(0.9);
}
h2, h3, p, figure, dl, dd, ol, ul {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--teal-300);
  text-decoration: none;
  transition: color 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}
button, input, select {
  font: inherit;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(13, 18, 22, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  display: flex;
  align-items: center;
  gap: var(--gap);
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 14px;
}
.site-header__brand, a[data-contract="site-name"] {
  color: var(--steel-100);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  padding-left: 12px;
  position: relative;
  white-space: nowrap;
}
.site-header__brand::before, a[data-contract="site-name"]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: linear-gradient(180deg, var(--orange-400), var(--teal-500));
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus-visible {
  color: var(--orange-400);
  text-decoration: none;
}
.category-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  color: var(--steel-300);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(31, 42, 50, 0.5);
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--ink-900);
  background: var(--teal-300);
  border-color: var(--teal-300);
  text-decoration: none;
}
.page-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.player-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #05080a;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 14px 40px -20px var(--teal-glow);
}
.player-shell video {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: #05080a;
  object-fit: cover;
}
.player-shell.is-theater {
  max-width: 100%;
  border-color: var(--orange-500);
}
.player-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(24, 32, 39, 0.96), rgba(13, 18, 22, 0.96));
  border-top: 1px solid var(--line);
}
.player-controls__btn {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: var(--ink-600);
  color: var(--steel-200);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
}
.player-controls__btn:hover, .player-controls__btn:focus-visible {
  border-color: var(--teal-300);
  color: var(--steel-100);
  background: var(--ink-700);
}
.player-controls__btn.is-active {
  background: var(--teal-500);
  border-color: var(--teal-300);
  color: #eafafb;
}
.player-shell.is-playing .player-controls__btn[data-player-action="play"] {
  background: var(--orange-500);
  border-color: var(--orange-400);
  color: #fff;
}
.player-shell.is-paused .player-controls__btn[data-player-action="play"] {
  border-color: var(--steel-400);
}
.player-shell.is-muted .player-controls__btn[data-player-action="mute"] {
  background: var(--steel-500);
  color: var(--ink-900);
  border-color: var(--steel-400);
}
.player-controls__range {
  appearance: none;
  -webkit-appearance: none;
  height: 4px;
  min-width: 84px;
  flex: 1 1 120px;
  max-width: 260px;
  background: var(--steel-500);
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}
.player-controls__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange-400);
  border: 2px solid var(--ink-900);
  cursor: pointer;
}
.player-controls__range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink-900);
  border-radius: 50%;
  background: var(--orange-400);
  cursor: pointer;
}
.player-controls__select {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: var(--ink-600);
  color: var(--steel-200);
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 2px;
  cursor: pointer;
}
.player-controls__select:focus-visible {
  border-color: var(--teal-300);
  outline: none;
}
.movie-overview {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(26, 35, 42, 0.9), rgba(16, 22, 27, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--pad);
}
.movie-overview__media {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.movie-overview__poster-wrap {
  position: relative;
  width: 100%;
  max-width: 260px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.9);
}
.movie-overview__poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 40%, rgba(13, 18, 22, 0.75) 100%);
  pointer-events: none;
}
.movie-overview__poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}
.movie-overview__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.movie-overview__title {
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.06em;
  color: var(--steel-100);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}
.movie-overview__tagline {
  font-size: 13px;
  color: var(--teal-300);
  letter-spacing: 0.08em;
  padding-left: 10px;
  border-left: 2px solid var(--orange-500);
}
.cast-strip {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cast-strip__heading, .synopsis__heading, .episode-status__heading, .details__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--steel-400);
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.cast-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.cast-list::-webkit-scrollbar {
  height: 4px;
}
.cast-list::-webkit-scrollbar-thumb {
  background: var(--steel-500);
  border-radius: 2px;
}
.cast-card {
  flex: 0 0 auto;
  width: 84px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  scroll-snap-align: start;
}
.cast-card__avatar-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--line-strong);
  background: var(--ink-700);
  position: relative;
}
.cast-card__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.08) brightness(0.9);
  transition: filter 0.2s ease;
}
.cast-card:hover .cast-card__avatar {
  filter: grayscale(0.15) contrast(1.05) brightness(1);
}
.cast-card__name {
  font-size: 12px;
  font-weight: 700;
  color: var(--steel-100);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cast-card__role {
  font-size: 10px;
  color: var(--steel-400);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.synopsis {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.synopsis__para {
  font-size: 13px;
  line-height: 1.7;
  color: var(--steel-300);
  text-align: justify;
}
.synopsis__para:first-of-type {
  color: var(--steel-200);
}
.episode-status {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 10px;
  background: rgba(15, 61, 68, 0.35);
  border-left: 2px solid var(--teal-300);
  border-radius: 0 2px 2px 0;
}
.episode-status__line {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-400);
  letter-spacing: 0.06em;
}
.details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 4px 16px;
}
.details-row {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-size: 12px;
  padding: 2px 0;
  border-bottom: 1px dashed rgba(139, 154, 166, 0.12);
}
.details-row__key {
  flex: 0 0 62px;
  color: var(--steel-400);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.details-row__value {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--steel-100);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.timeline-panel {
  background: linear-gradient(180deg, rgba(20, 27, 32, 0.92), rgba(13, 18, 22, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.timeline-panel__heading, .episode-grid-panel__heading, .comments-panel__heading, .recommend-region__heading {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--steel-100);
  text-transform: uppercase;
  position: relative;
  padding-left: 12px;
}
.timeline-panel__heading::before, .episode-grid-panel__heading::before, .comments-panel__heading::before, .recommend-region__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 15px;
  background: var(--orange-500);
}
.timeline-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0 22px;
}
.timeline-node {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  padding: 9px 0 9px 16px;
  border-left: 1px solid var(--line-strong);
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-300);
  box-shadow: 0 0 0 3px rgba(28, 106, 114, 0.4);
}
.timeline-node:last-child::before {
  background: var(--orange-400);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.timeline-node__code {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--orange-400);
  white-space: nowrap;
}
.timeline-node__label {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--steel-200);
}
.episode-grid-panel {
  background: linear-gradient(180deg, rgba(20, 27, 32, 0.92), rgba(13, 18, 22, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.episode-card__number {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal-300);
}
.episode-card__title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--steel-100);
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.episode-card__summary {
  font-size: 12px;
  line-height: 1.6;
  color: var(--steel-400);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.26s ease, opacity 0.2s ease, margin-top 0.2s ease;
}
.episode-card__duration {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--steel-400);
  letter-spacing: 0.06em;
  margin-top: auto;
  padding-top: 3px;
}
.episode-card:hover, .episode-card:focus-within {
  border-color: var(--teal-300);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.episode-card:hover .episode-card__summary, .episode-card:focus-within .episode-card__summary {
  max-height: 140px;
  opacity: 1;
  margin-top: 2px;
}
.episode-card--active {
  border-color: var(--orange-500);
  background: linear-gradient(180deg, rgba(74, 34, 10, 0.55), rgba(20, 27, 32, 0.95));
}
.episode-card--active::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 14px solid var(--orange-500);
  border-left: 14px solid transparent;
}
.episode-card--active .episode-card__number {
  color: var(--orange-400);
}
.recommend-region {
  position: relative;
  background: linear-gradient(180deg, rgba(20, 27, 32, 0.92), rgba(13, 18, 22, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recommend-region__count {
  position: absolute;
  top: var(--pad);
  right: var(--pad);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-900);
  background: var(--steel-300);
  padding: 1px 7px;
  border-radius: 2px;
}
.recommend-region--actions .recommend-region__heading::before {
  background: var(--orange-500);
}
.recommend-region--mystery .recommend-region__heading::before {
  background: var(--teal-300);
}
.recommend-region--short .recommend-region__heading::before {
  background: var(--steel-300);
}
.recommend-region--actions .recommend-region__count {
  background: var(--orange-400);
}
.recommend-region--mystery .recommend-region__count {
  background: var(--teal-300);
  color: #eafafb;
}
.recommend-stack {
  display: grid;
  gap: 8px;
}
.recommend-region--actions .recommend-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.recommend-region--mystery .recommend-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.recommend-region--short .recommend-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
a.recommend-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 3px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--steel-200);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
a.recommend-card:hover, a.recommend-card:focus-visible {
  border-color: var(--teal-300);
  background: var(--surface-2);
  text-decoration: none;
}
[data-runtime="recommendation"] img, .recommend-card__img {
  grid-row: span 2;
  width: 100%;
  height: 100%;
  min-height: 54px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
  background: var(--ink-700);
  filter: saturate(0.75) contrast(1.05);
}
.recommend-card__name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--steel-100);
  letter-spacing: 0.02em;
  line-height: 1.35;
  align-self: end;
}
.recommend-card__blurb {
  font-size: 11px;
  line-height: 1.5;
  color: var(--steel-400);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comments-panel {
  background: linear-gradient(180deg, rgba(20, 27, 32, 0.92), rgba(13, 18, 22, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comments-masonry {
  column-count: 2;
  column-gap: 10px;
}
.comment-card {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 0 0 10px;
  padding: 9px 11px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 2px solid var(--steel-500);
  border-radius: 2px;
}
.comment-card__nickname {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--teal-300);
  margin-bottom: 4px;
}
.comment-card__text {
  font-size: 12.5px;
  line-height: 1.68;
  color: var(--steel-400);
  text-align: justify;
}
.site-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 14px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line);
}
.site-footer__disclaimer {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--steel-400);
  letter-spacing: 0.02em;
}
.site-footer__friends {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.site-footer__friends-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--steel-400);
  text-transform: uppercase;
  padding-right: 6px;
  border-right: 1px solid var(--line-strong);
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--steel-300);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
  white-space: nowrap;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--orange-400);
  border-color: var(--orange-500);
  text-decoration: none;
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}
.site-footer__link, a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--steel-300);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-home"]:focus-visible {
  color: var(--teal-300);
  border-bottom-color: var(--teal-300);
  text-decoration: none;
}
a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-sitemap"]:focus-visible {
  color: var(--orange-400);
  border-bottom-color: var(--orange-500);
  text-decoration: none;
}
@media (max-width: 1080px) {.movie-overview {
    grid-template-columns: minmax(0, 210px) minmax(0, 1fr);
  }
.episode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.recommend-region--mystery .recommend-stack, .recommend-region--short .recommend-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.movie-overview {
    grid-template-columns: minmax(0, 1fr);
  }
.movie-overview__media {
    justify-content: center;
  }
.movie-overview__poster-wrap {
    max-width: 220px;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-region--actions .recommend-stack, .recommend-region--mystery .recommend-stack, .recommend-region--short .recommend-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.comments-masonry {
    column-count: 2;
  }}
@media (max-width: 640px) {body {
    font-size: 13.5px;
  }
.page-main {
    padding: 10px 10px 6px;
    gap: 14px;
  }
.site-header__bar {
    padding: 7px 10px;
  }
.category-strip {
    order: 3;
    flex: 1 1 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 3px;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
.episode-card__summary {
    max-height: 160px;
    opacity: 1;
    margin-top: 2px;
  }
.timeline-list {
    grid-template-columns: minmax(0, 1fr);
  }
.comments-masonry {
    column-count: 1;
  }
.player-controls__range {
    flex: 1 1 100%;
    max-width: 100%;
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 420px) {.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-region__count {
    position: static;
    align-self: flex-start;
  }}
@media (prefers-reduced-motion: reduce) {* {
    transition: none !important;
    animation: none !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}
