*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body, h1, h2, h3, p, dl, dd, dt, figure, figcaption {
  margin: 0;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
button, input {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
:root {
  --ink: #e9e0d0;
  --ink-dim: #b9ab93;
  --ink-faint: #8d7f68;
  --bg-deep: #14100c;
  --bg-panel: #1c1712;
  --bg-panel-2: #221b14;
  --tea: #e8b45c;
  --tea-soft: #c9963c;
  --gold-line: #6b5527;
  --gold-line-soft: rgba(148, 116, 55, 0.4);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans SC", system-ui, -apple-system, sans-serif;
}
body {
  background:
    radial-gradient(120% 80% at 50% -10%, #241d14 0%, #16110c 46%, #0d0a07 100%);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(20, 15, 10, 0.96), rgba(20, 15, 10, 0.82));
  border-bottom: 1px solid var(--gold-line-soft);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 16px;
}
a[data-contract="site-name"] {
  color: var(--tea);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-style: italic;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(232, 180, 92, 0.25);
}
.categories-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  flex: 1 1 240px;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  color: var(--ink-dim);
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px;
  padding: 3px 10px;
  border: 1px solid var(--gold-line-soft);
  border-radius: 2px;
  background: rgba(107, 85, 39, 0.12);
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--tea);
  border-color: var(--tea-soft);
  background: rgba(232, 180, 92, 0.12);
  outline: none;
}
.page-main {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px 40px;
}
.hero-stage {
  position: relative;
  margin: 14px 0 16px;
}
.hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  background:
    radial-gradient(60% 90% at 50% 55%, rgba(232, 180, 92, 0.16), transparent 62%),
    linear-gradient(160deg, #1d241c 0%, #171c15 40%, #100d09 100%);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.8), var(--shadow);
  padding: 26px 22px 20px;
}
.hero-tableau {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  min-height: 240px;
}
.hero-figure {
  position: relative;
  flex: 0 1 260px;
  max-width: 46%;
}
.hero-figure-left {
  transform: translateX(6%);
}
.hero-figure-right {
  transform: translateX(-6%);
}
.hero-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.6) brightness(0.62) contrast(1.08);
  border: 1px solid rgba(148, 116, 55, 0.35);
  -webkit-mask-image: linear-gradient(180deg, #000 62%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 62%, transparent 100%);
}
.hero-figure-left .hero-portrait {
  object-position: 30% 20%;
}
.hero-figure-right .hero-portrait {
  object-position: 70% 20%;
}
.hero-caption {
  position: absolute;
  bottom: 4px;
  left: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--ink);
  text-shadow: 0 1px 10px #000, 0 0 2px #000;
  font-style: italic;
}
.hero-tea-light {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  width: 76px;
  height: 76px;
  pointer-events: none;
  z-index: 2;
}
.tea-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #ffe6a8 0%, var(--tea) 34%, rgba(201, 150, 60, 0.35) 62%, transparent 78%);
  filter: blur(2px);
  box-shadow: 0 0 60px 22px rgba(232, 180, 92, 0.35);
  animation: teaPulse 5.5s ease-in-out infinite;
}
@keyframes teaPulse {
  0%, 100% { opacity: 0.82; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.hero-standfirst {
  position: relative;
  z-index: 3;
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
  font-style: italic;
}
.overview-block {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 18px;
  background: linear-gradient(180deg, var(--bg-panel) 0%, #191410 100%);
  border: 1px solid var(--gold-line-soft);
  box-shadow: var(--shadow);
}
.overview-poster {
  position: relative;
  align-self: start;
}
.overview-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.82) contrast(1.05);
  border: 1px solid var(--gold-line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.overview-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.overview-title {
  font-size: 26px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: var(--ink);
}
.overview-tagline {
  font-size: 13.5px;
  color: var(--tea-soft);
  letter-spacing: 0.06em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-line-soft);
}
.overview-player {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.player-frame {
  position: relative;
  width: 100%;
  background: #000;
  border: 1px solid var(--gold-line);
  overflow: hidden;
}
.player-frame video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--gold-line-soft);
}
.player-btn {
  appearance: none;
  cursor: pointer;
  background: rgba(107, 85, 39, 0.16);
  border: 1px solid var(--gold-line-soft);
  border-radius: 2px;
  color: var(--ink-dim);
  font-size: 12px;
  padding: 4px 9px;
  line-height: 1.4;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.player-btn:hover {
  color: var(--tea);
  border-color: var(--tea-soft);
}
.player-btn.is-active, .player-btn.play.is-active, .player-btn.mute.is-active, .player-btn.speed.is-active, .player-btn.pip.is-active, .player-btn.fullscreen.is-active, .player-btn.theater.is-active, .player-btn.light.is-active {
  color: #14100c;
  background: var(--tea);
  border-color: var(--tea);
}
.player-range {
  appearance: none;
  -webkit-appearance: none;
  height: 4px;
  min-width: 60px;
  flex: 1 1 90px;
  background: linear-gradient(90deg, var(--tea-soft) 0%, var(--tea-soft) 0%, rgba(107, 85, 39, 0.5) 0%);
  background-color: rgba(107, 85, 39, 0.5);
  border-radius: 2px;
  cursor: pointer;
  accent-color: var(--tea);
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--tea);
  border: none;
  box-shadow: 0 0 6px rgba(232, 180, 92, 0.7);
}
.player-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: var(--tea);
}
.player-range.volume, .player-range.progress {
  accent-color: var(--tea);
}
.overview-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.status-item {
  font-size: 12.5px;
  color: var(--ink-dim);
  padding: 3px 10px;
  border: 1px solid var(--gold-line-soft);
  background: rgba(107, 85, 39, 0.1);
  letter-spacing: 0.06em;
}
.overview-cast {
  padding-top: 12px;
  border-top: 1px solid var(--gold-line-soft);
}
.cast-heading, .synopsis-heading, .details-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--tea-soft);
  font-style: italic;
  margin-bottom: 10px;
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  align-items: start;
}
.cast-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 9px;
  align-items: center;
  padding: 6px;
  background: rgba(107, 85, 39, 0.08);
  border: 1px solid rgba(148, 116, 55, 0.22);
}
.cast-avatar {
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(0.6) brightness(0.8);
  border: 1px solid var(--gold-line-soft);
}
.cast-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.cast-role {
  font-size: 11.5px;
  color: var(--ink-faint);
  line-height: 1.3;
}
.overview-synopsis {
  padding-top: 12px;
  border-top: 1px solid var(--gold-line-soft);
}
.synopsis-para {
  font-size: 13.5px;
  line-height: 1.62;
  color: var(--ink-dim);
  text-align: justify;
  margin-bottom: 8px;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.overview-details {
  padding-top: 12px;
  border-top: 1px solid var(--gold-line-soft);
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0 20px;
}
.details-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(148, 116, 55, 0.22);
}
.details-key {
  flex: 0 0 68px;
  font-size: 12.5px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
}
.details-value {
  flex: 1 1 auto;
  margin: 0;
  font-size: 13px;
  color: var(--ink);
}
.triptych {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.1fr;
  gap: 14px;
  align-items: start;
  margin-top: 16px;
}
.triptych-heading {
  font-size: 13.5px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.2em;
  color: var(--tea-soft);
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--gold-line-soft);
}
.triptych-timeline, .triptych-cast, .triptych-comments {
  background: linear-gradient(180deg, var(--bg-panel-2) 0%, #1a1510 100%);
  border: 1px solid var(--gold-line-soft);
  padding: 12px 13px;
}
.timeline-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  padding: 7px 0 7px 16px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-line-soft) 12%, var(--gold-line-soft) 88%, transparent);
}
.timeline-item:first-child::before {
  top: 12px;
}
.timeline-item:last-child::before {
  bottom: calc(100% - 18px);
}
.timeline-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 1px solid var(--tea-soft);
  box-shadow: 0 0 8px rgba(232, 180, 92, 0.5);
}
.timeline-timecode {
  font-size: 12px;
  font-weight: 700;
  color: var(--tea);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  padding-top: 1px;
}
.timeline-label {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-dim);
}
.cast-chip-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 9px;
  align-items: start;
}
.cast-chip {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
}
.cast-chip-avatar {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(0.55) brightness(0.78);
  border: 1px solid var(--gold-line-soft);
}
.cast-chip-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.cast-chip-role {
  font-size: 11px;
  color: var(--ink-faint);
  line-height: 1.3;
}
.comment-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.comment-item {
  position: relative;
  padding: 8px 10px;
  background: rgba(107, 85, 39, 0.09);
  border: 1px solid rgba(148, 116, 55, 0.2);
  border-left: 2px solid rgba(232, 180, 92, 0.5);
}
.comment-text {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-dim);
  margin-bottom: 5px;
}
.comment-nickname {
  display: block;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}
.comment-nickname::before {
  content: "— ";
  color: var(--tea-soft);
}
.episodes-module {
  margin-top: 16px;
}
.episodes-heading {
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.22em;
  color: var(--tea-soft);
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--gold-line-soft);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
.episode-card {
  padding: 12px 13px;
  background: linear-gradient(180deg, #1d1712 0%, #191410 100%);
  border: 1px solid var(--gold-line);
  box-shadow: inset 0 0 0 1px rgba(20, 16, 12, 0.9), 0 4px 14px rgba(0, 0, 0, 0.45);
}
.episode-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.35;
}
.episode-divider {
  border: none;
  height: 1px;
  margin: 7px 0;
  background: linear-gradient(90deg, var(--gold-line-soft), rgba(148, 116, 55, 0.08));
}
.episode-summary {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-dim);
  text-align: justify;
}
.episode-duration {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  color: var(--tea-soft);
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border: 1px solid var(--gold-line-soft);
  background: rgba(107, 85, 39, 0.12);
}
.recommend-strip {
  margin-top: 16px;
  padding: 12px 13px;
  background: linear-gradient(180deg, #1a1510 0%, #16110c 100%);
  border: 1px solid var(--gold-line-soft);
}
.recommend-region-2 {
  background: linear-gradient(180deg, #191410 0%, #15100b 100%);
}
.recommend-region-3 {
  background: linear-gradient(180deg, #171310 0%, #14100c 100%);
}
.recommend-heading {
  font-size: 13.5px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.2em;
  color: var(--tea-soft);
  margin-bottom: 10px;
}
.recommend-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  align-items: start;
}
a.recommend-card, .recommend-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--ink-dim);
  text-decoration: none;
  transition: transform 0.18s ease, filter 0.18s ease;
}
a.recommend-card:hover, a.recommend-card:focus-visible {
  transform: translateY(-2px);
  outline: none;
}
a.recommend-card:hover .recommend-name {
  color: var(--tea);
}
[data-runtime="recommendation"] img, .recommend-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  filter: saturate(0.55) brightness(0.72) contrast(1.05);
  border: 1px solid var(--gold-line-soft);
}
.recommend-region-2 .recommend-poster {
  filter: saturate(0.42) brightness(0.62) contrast(1.05);
}
.recommend-region-3 .recommend-poster {
  filter: saturate(0.68) brightness(0.82) contrast(1.05);
}
.recommend-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recommend-blurb {
  font-size: 11px;
  color: var(--ink-faint);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 22px;
  padding: 18px 16px 26px;
  background: linear-gradient(180deg, #12100c 0%, #0c0a07 100%);
  border-top: 1px solid var(--gold-line-soft);
}
.site-footer > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--ink-faint);
  text-align: justify;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12.5px;
  color: var(--ink-dim);
  text-decoration: none;
  letter-spacing: 0.08em;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--tea);
  border-bottom-color: var(--tea-soft);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 116, 55, 0.2);
}
.footer-links-label {
  font-size: 12px;
  color: var(--tea-soft);
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-right: 2px;
}
a.runtime-friend-link {
  font-size: 12px;
  color: var(--ink-faint);
  text-decoration: none;
  transition: color 0.15s ease;
}
a.runtime-friend-link:hover {
  color: var(--tea);
  text-decoration: underline;
  text-decoration-color: var(--gold-line-soft);
}
body.lights-off .page-main {
  filter: brightness(0.62) saturate(0.8);
  transition: filter 0.3s ease;
}
body.lights-off .player-frame {
  filter: brightness(1.25);
}
body.theater-mode .overview-block {
  grid-template-columns: minmax(0, 1fr);
}
body.theater-mode .overview-poster {
  display: none;
}
body.theater-mode .player-frame video {
  max-height: 76vh;
  object-fit: contain;
  background: #000;
}
.player .click, .player .fullscreen, .player .input, .player .light, .player .mute, .player .pip, .player .play, .player .progress, .player .speed, .player .theater, .player .timeupdate, .player .volume, .player .x {
  cursor: pointer;
}
.player.fullscreen, .player .fullscreen, .player.pip, .player .pip {
  background: #000;
}
.player .x {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
  width: 26px;
  height: 26px;
  border: 1px solid var(--gold-line-soft);
  background: rgba(20, 15, 10, 0.8);
  color: var(--ink-dim);
}
.player .timeupdate, .player .progress {
  color: var(--tea-soft);
}
@media (max-width: 1080px) {.triptych {
    grid-template-columns: 1fr 1fr;
  }
.triptych-comments {
    grid-column: 1 / -1;
  }
.comment-stack {
    flex-direction: row;
    flex-wrap: wrap;
  }
.comment-item {
    flex: 1 1 260px;
  }}
@media (max-width: 860px) {.overview-block {
    grid-template-columns: minmax(0, 1fr);
  }
.overview-poster {
    max-width: 260px;
  }
.hero-figure {
    flex-basis: 210px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 700px) {.triptych {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-stack {
    flex-direction: column;
  }
.comment-item {
    flex: 1 1 auto;
  }
.overview-title {
    font-size: 22px;
  }
.hero-tableau {
    min-height: 200px;
  }
.hero-tea-light {
    width: 56px;
    height: 56px;
  }
.hero-figure {
    max-width: 48%;
  }
.timeline-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px;
  }
.recommend-track {
    grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  }}
@media (max-width: 480px) {body {
    font-size: 14px;
  }
.header-inner {
    gap: 10px;
    padding: 7px 12px;
  }
a[data-contract="site-name"] {
    font-size: 16px;
  }
.page-main {
    padding: 0 10px 30px;
  }
.overview-block {
    padding: 12px;
    gap: 14px;
  }
.overview-title {
    font-size: 20px;
  }
.hero-visual {
    padding: 18px 12px 14px;
  }
.hero-standfirst {
    font-size: 12.5px;
  }
.hero-caption {
    font-size: 11.5px;
    letter-spacing: 0.2em;
  }
.cast-list {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-chip-list {
    grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.player-btn {
    font-size: 11px;
    padding: 4px 7px;
  }
.footer-nav {
    gap: 10px;
  }}
@media (max-width: 360px) {.recommend-track {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-figure {
    max-width: 50%;
  }}

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}
