*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body, h1, h2, h3, p, ol, ul, dl, dd, dt {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
button, input, select {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
:root {
  --ink: #e9ecef;
  --ink-soft: #b7bcc4;
  --ink-dim: #8b919a;
  --ink-faint: #6b7178;
  --bg: #14171b;
  --bg-2: #1a1e23;
  --bg-3: #20252b;
  --bg-glass: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.06);
  --gold: #c9a961;
  --gold-soft: rgba(201, 169, 97, 0.55);
  --gold-dim: rgba(201, 169, 97, 0.28);
  --gold-glow: rgba(201, 169, 97, 0.14);
  --steel: #7f8a97;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans SC", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --radius: 3px;
  --radius-lg: 5px;
  --pad: 16px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(201, 169, 97, 0.05) 0%, rgba(201, 169, 97, 0) 320px),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.014) 0px,
      rgba(255, 255, 255, 0.014) 1px,
      transparent 1px,
      transparent 96px
    );
  min-height: 100vh;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.32;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(20, 23, 27, 0.86);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 9px var(--pad);
}
a[data-contract="site-name"], .site-logo {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  padding-right: 16px;
  border-right: 1px solid var(--gold-dim);
}
a[data-contract="site-name"]:hover, .site-logo:hover {
  color: var(--gold);
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  min-width: 0;
  flex: 1 1 auto;
}
a.runtime-category, .runtime-category {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: var(--bg-glass);
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
a.runtime-category:hover, .runtime-category:hover {
  color: var(--gold);
  border-color: var(--gold-soft);
  background: var(--gold-glow);
}
.page-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--pad) 40px;
}
.movie-overview {
  display: block;
}
.overview-hero {
  display: grid;
  grid-template-columns: minmax(0, 232px) minmax(0, 1fr) minmax(0, 148px);
  align-items: start;
  gap: 20px;
  padding: 22px 0 18px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.overview-hero::before {
  content: "";
  position: absolute;
  inset: 0 -40% 0 -40%;
  pointer-events: none;
  background:
    radial-gradient(58% 78% at 16% 18%, rgba(201, 169, 97, 0.1) 0%, transparent 68%),
    linear-gradient(112deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(255deg, rgba(127, 138, 151, 0.09) 0%, rgba(127, 138, 151, 0) 46%);
  z-index: 0;
}
.poster-wrap {
  position: relative;
  z-index: 1;
  align-self: start;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(122deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0) 62%, rgba(255, 255, 255, 0.07) 100%);
  mix-blend-mode: screen;
}
.main-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}
.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.movie-title {
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #f3f5f7;
  text-shadow: 0 1px 22px rgba(201, 169, 97, 0.22);
}
.movie-tagline {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.05em;
  padding-left: 10px;
  border-left: 2px solid var(--gold-dim);
}
.movie-seo {
  font-size: 13px;
  line-height: 1.62;
  color: var(--ink-soft);
  position: relative;
  padding: 9px 11px;
  background: var(--bg-glass);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background-image: repeating-linear-gradient(
    0deg,
    rgba(201, 169, 97, 0.05) 0px,
    rgba(201, 169, 97, 0.05) 1px,
    transparent 1px,
    transparent 24px
  );
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}
a.btn-play, .btn-play {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 20px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #17191c;
  text-decoration: none;
  background: linear-gradient(135deg, #e0c27f 0%, var(--gold) 52%, #a98c46 100%);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(201, 169, 97, 0.24);
  transition: filter 0.18s ease, transform 0.18s ease;
}
a.btn-play::before, .btn-play::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #17191c;
}
a.btn-play:hover, .btn-play:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.hero-badge {
  display: inline-block;
  padding: 5px 11px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold);
  white-space: nowrap;
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
  background: var(--gold-glow);
}
.player-shell {
  margin-top: 5px;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #0f1114;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.player-stage {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #000;
  overflow: hidden;
}
.player-stage.is-lights-off::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 120% at 50% 50%, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.62) 100%);
}
.player-stage video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: contain;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 8px 10px;
  background: linear-gradient(180deg, #16191e 0%, #101317 100%);
  border-top: 1px solid var(--line);
}
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-soft);
  white-space: nowrap;
  cursor: pointer;
  background: var(--bg-glass);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.pc-btn:hover {
  color: var(--ink);
  border-color: var(--gold-dim);
  background: rgba(201, 169, 97, 0.08);
}
.pc-btn.is-active {
  color: var(--gold);
  border-color: var(--gold-soft);
  background: var(--gold-glow);
}
.pc-progress {
  flex: 1 1 140px;
  min-width: 90px;
  height: 4px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  outline: none;
}
.pc-progress::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  box-shadow: 0 0 8px rgba(201, 169, 97, 0.6);
}
.pc-progress::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
}
.pc-volume {
  flex: 0 1 78px;
  min-width: 56px;
  height: 4px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  outline: none;
}
.pc-volume::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--steel);
  border: none;
}
.pc-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: var(--steel);
}
.player-shell.is-muted .pc-volume {
  opacity: 0.45;
}
.pc-speed {
  padding: 4px 6px;
  font-size: 12px;
  color: var(--ink-soft);
  cursor: pointer;
  background: var(--bg-glass);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  outline: none;
}
.pc-speed option {
  background: #16191e;
  color: var(--ink);
}
.player-shell.is-theater {
  box-shadow: 0 0 0 1px var(--gold-dim), 0 18px 46px rgba(0, 0, 0, 0.6);
}
.hero-cast-rail {
  position: relative;
  z-index: 1;
  align-self: start;
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.012) 100%);
  border-top: 2px solid var(--gold-dim);
}
.rail-title {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 8px;
}
.rail-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rail-item {
  padding: 7px 0;
  font-size: 13.5px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line-soft);
  transition: color 0.16s ease;
}
.rail-item:last-child {
  border-bottom: none;
}
.rail-item:hover {
  color: var(--gold);
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #f0f2f4;
  margin-bottom: 12px;
}
.section-heading::before {
  content: "";
  flex: 0 0 auto;
  width: 3px;
  height: 14px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dim) 100%);
  border-radius: 1px;
}
.section-heading::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--line) 0%, rgba(255, 255, 255, 0) 100%);
}
.synopsis-block {
  padding: 16px 0 18px;
  border-bottom: 1px solid var(--line);
}
.synopsis-body {
  columns: 3;
  column-gap: 26px;
  column-rule: 1px solid var(--line-soft);
  font-size: 13px;
  line-height: 1.68;
  color: var(--ink-soft);
  text-align: justify;
}
.synopsis-body p {
  margin: 0 0 9px;
  break-inside: avoid;
}
.synopsis-body p:last-child {
  margin-bottom: 0;
}
.episode-status, .details-block {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.status-cell {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 12px;
  background: var(--bg-2);
}
.status-cell dt {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  white-space: nowrap;
}
.status-cell dd {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.detail-cell {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 12px;
  background: var(--bg-2);
}
.detail-cell dt {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  white-space: nowrap;
}
.detail-cell dd {
  font-size: 13px;
  color: var(--ink);
}
.timeline-block {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 6px 2px 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) transparent;
}
.timeline-track::-webkit-scrollbar {
  height: 5px;
}
.timeline-track::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 999px;
}
.timeline-node {
  position: relative;
  flex: 0 0 208px;
  padding: 20px 16px 0 0;
  min-width: 0;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--bg);
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--gold-glow);
}
.timeline-node::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  right: -2px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-soft) 0%, var(--gold-dim) 60%, rgba(201, 169, 97, 0.05) 100%);
}
.timeline-node:last-child::after {
  background: linear-gradient(90deg, var(--gold-soft) 0%, rgba(201, 169, 97, 0) 100%);
}
.node-timecode {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 5px;
}
.node-label {
  display: block;
  font-size: 12.5px;
  line-height: 1.58;
  color: var(--ink-soft);
  padding-right: 12px;
}
.episodes-block {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 11px 13px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.042) 0%, rgba(255, 255, 255, 0.012) 100%);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--gold-dim);
  border-radius: var(--radius);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.episode-card:hover {
  border-left-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.09) 0%, rgba(255, 255, 255, 0.014) 100%);
}
.episode-title {
  font-size: 13.5px;
  font-weight: 500;
  color: #eef0f2;
  letter-spacing: 0.02em;
}
.episode-summary {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-dim);
}
.episode-duration {
  align-self: flex-start;
  margin-top: 1px;
  padding: 1px 7px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--steel);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}
.comments-block {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.comments-columns {
  columns: 3;
  column-gap: 10px;
}
.comment-col {
  display: contents;
}
.comment-card {
  break-inside: avoid;
  margin: 0 0 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.comment-nickname {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 4px;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--ink-soft);
}
.recommend-region {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.recommend-region:last-of-type {
  border-bottom: none;
}
.recommend-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
a.recommend-item, .recommend-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1 1 168px;
  max-width: 220px;
  min-width: 0;
  padding: 8px;
  color: var(--ink-soft);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.012) 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color 0.18s ease, transform 0.18s ease, color 0.18s ease;
}
a.recommend-item:hover, .recommend-item:hover {
  color: var(--ink);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  background: var(--bg-3);
}
.recommend-item [data-runtime="name"] {
  font-size: 13px;
  font-weight: 500;
  color: #eef0f2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recommend-item [data-runtime="blurb"] {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--ink-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  border-top: 1px solid var(--gold-dim);
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.05) 0%, rgba(255, 255, 255, 0) 60%), var(--bg-2);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px 26px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px var(--pad) 26px;
}
.footer-brand {
  flex: 0 0 auto;
}
.footer-title {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 16px;
  flex: 0 0 auto;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"], .footer-nav a {
  font-size: 12.5px;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover, .footer-nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold-soft);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 12px;
  flex: 1 1 340px;
  min-width: 0;
}
.friend-links-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  white-space: nowrap;
}
a.runtime-friend-link, .runtime-friend-link {
  font-size: 12px;
  color: var(--ink-dim);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.16s ease;
}
a.runtime-friend-link:hover, .runtime-friend-link:hover {
  color: var(--gold);
  text-decoration: underline;
}
.footer-disclaimer {
  flex: 1 1 100%;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--ink-faint);
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}
@media (max-width: 1080px) {.overview-hero {
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  }
.hero-cast-rail {
    grid-column: 1 / -1;
  }
.rail-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 10px;
  }
.rail-item {
    padding: 4px 10px;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    letter-spacing: 0.1em;
  }
.synopsis-body {
    columns: 2;
  }
.comments-columns {
    columns: 2;
  }}
@media (max-width: 760px) {.header-inner {
    gap: 6px 14px;
    padding: 8px var(--pad);
  }
a[data-contract="site-name"], .site-logo {
    border-right: none;
    padding-right: 0;
  }
.overview-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding-top: 16px;
  }
.poster-wrap {
    max-width: 232px;
  }
.synopsis-body {
    columns: 1;
    column-rule: none;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comments-columns {
    columns: 1;
  }
.recommend-item {
    flex: 1 1 45%;
    max-width: none;
  }
.timeline-node {
    flex: 0 0 176px;
  }}
@media (max-width: 460px) {:root {
    --pad: 12px;
  }
body {
    font-size: 13.5px;
  }
.movie-title {
    font-size: 20px;
  }
.player-controls {
    gap: 5px 6px;
    padding: 7px 8px;
  }
.pc-btn {
    padding: 4px 8px;
    font-size: 11.5px;
  }
.recommend-item {
    flex: 1 1 100%;
  }
.timeline-node {
    flex: 0 0 156px;
  }}

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}
