:root {
  --beer-gold: #f5b52b;
  --beer-gold-deep: #d99413;
  --cyan: #2fd0d6;
  --cyan-deep: #0e7d86;
  --neon-pink: #ff5c9b;
  --ink: #0a0d12;
  --ink-2: #11161f;
  --ink-3: #1a212e;
  --glass: rgba(14, 20, 30, 0.62);
  --glass-line: rgba(255, 255, 255, 0.12);
  --text: #eef3f6;
  --text-dim: #a7b3bd;
  --text-faint: #6f7d89;
  --radius: 10px;
  --radius-sm: 6px;
  --gap: 10px;
  --gap-tight: 6px;
  --font-head: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", system-ui, sans-serif;
  --font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(47, 208, 214, 0.10), transparent 60%),
    radial-gradient(900px 500px at 0% 20%, rgba(255, 92, 155, 0.08), transparent 65%),
    radial-gradient(1000px 700px at 50% 120%, rgba(245, 181, 43, 0.09), transparent 60%),
    var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img, video {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
button, input, select {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, p {
  margin: 0;
}
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(10, 13, 18, 0.96), rgba(10, 13, 18, 0.82) 70%, rgba(10, 13, 18, 0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 14px;
}
.site-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--beer-gold);
  text-decoration: none;
  text-shadow: 0 0 14px rgba(245, 181, 43, 0.35);
  white-space: nowrap;
  flex: 0 0 auto;
}
.site-logo:hover, .site-logo:focus-visible {
  color: var(--cyan);
  text-decoration: none;
}
.header-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}
.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
.runtime-category:hover, .runtime-category:focus-visible {
  color: var(--ink);
  background: var(--beer-gold);
  border-color: var(--beer-gold);
  text-decoration: none;
}
.page-main {
  display: block;
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 14px 26px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--glass-line);
  background:
    linear-gradient(160deg, rgba(26, 33, 46, 0.92), rgba(12, 16, 24, 0.94)),
    var(--ink-2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(420px 200px at 92% 0%, rgba(47, 208, 214, 0.14), transparent 70%),
    radial-gradient(360px 220px at 0% 100%, rgba(255, 92, 155, 0.10), transparent 70%);
  opacity: 0.9;
}
.hero-poster-wrap {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
  align-self: start;
}
.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.06) contrast(1.04);
}
.poster-tag {
  position: absolute;
  left: 6px;
  bottom: 6px;
  padding: 3px 7px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  background: var(--beer-gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}
.hero-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.movie-title {
  font-size: clamp(20px, 3.4vw, 30px);
  color: var(--text);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 18px rgba(47, 208, 214, 0.22);
}
.movie-tagline {
  font-size: 13px;
  color: var(--beer-gold);
  font-weight: 600;
  border-left: 3px solid var(--beer-gold);
  padding-left: 8px;
  line-height: 1.45;
}
.movie-seo {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 78ch;
}
.hero-player {
  display: block;
  width: 100%;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
}
.hero-player video {
  width: 100%;
  display: block;
  background: #000;
}
.hero-player.is-lights-off {
  box-shadow: 0 0 0 1px var(--cyan), 0 0 26px rgba(47, 208, 214, 0.35);
}
.hero-player.is-theater {
  outline: 2px solid var(--neon-pink);
  outline-offset: 2px;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  padding: 7px 8px;
  background: linear-gradient(180deg, rgba(20, 26, 36, 0.95), rgba(10, 14, 20, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ctrl-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.ctrl-btn:hover, .ctrl-btn:focus-visible {
  color: var(--ink);
  background: var(--beer-gold);
  border-color: var(--beer-gold);
  outline: none;
}
.ctrl-btn.play, .ctrl-btn[data-player-action="play"] {
  color: var(--beer-gold);
  border-color: rgba(245, 181, 43, 0.5);
}
.hero-player.is-playing .ctrl-btn[data-player-action="play"] {
  color: var(--ink);
  background: var(--beer-gold);
  border-color: var(--beer-gold);
}
.hero-player.is-muted .ctrl-btn[data-player-action="mute"] {
  color: var(--neon-pink);
  border-color: rgba(255, 92, 155, 0.6);
}
.ctrl-range {
  appearance: none;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  min-width: 0;
  flex: 1 1 90px;
  max-width: 240px;
}
.ctrl-range[data-player-action="volume"] {
  flex: 1 1 60px;
  max-width: 120px;
}
.ctrl-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--beer-gold);
  border: 2px solid var(--ink-3);
  box-shadow: 0 0 8px rgba(245, 181, 43, 0.6);
}
.ctrl-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink-3);
  border-radius: 50%;
  background: var(--beer-gold);
}
.ctrl-select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 7px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.ctrl-select:hover, .ctrl-select:focus-visible {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
  outline: none;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: start;
  gap: 4px 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.meta-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
  min-width: 0;
  font-size: 12.5px;
}
.meta-key {
  flex: 0 0 auto;
  color: var(--text-faint);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.meta-val {
  color: var(--text);
  min-width: 0;
  word-break: break-word;
}
.detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: flex-start;
}
.detail-chip {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}
.detail-chip.score-chip {
  color: var(--ink);
  background: var(--beer-gold);
  border-color: var(--beer-gold);
  box-shadow: 0 0 12px rgba(245, 181, 43, 0.4);
}
.cast-strip {
  display: block;
}
.strip-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: 0.14em;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  align-items: start;
  gap: 7px;
}
.cast-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 9px;
  border-radius: var(--radius-sm);
  background: linear-gradient(140deg, rgba(47, 208, 214, 0.10), rgba(255, 92, 155, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--beer-gold);
  min-width: 0;
}
.cast-face {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13.5px;
  color: var(--text);
  white-space: nowrap;
}
.cast-line {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--text-dim);
  font-style: italic;
}
.synopsis-block {
  display: block;
  padding-top: 2px;
}
.block-title {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--neon-pink);
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.68;
  color: var(--text-dim);
  margin-bottom: 7px;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: flex-start;
  padding-top: 2px;
}
.status-bar {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(47, 208, 214, 0.10);
  border: 1px dashed rgba(47, 208, 214, 0.5);
  white-space: nowrap;
}
.status-bar:last-child {
  color: var(--ink);
  background: var(--cyan);
  border-style: solid;
  border-color: var(--cyan);
}
.section-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.06em;
  padding-left: 9px;
  border-left: 4px solid var(--beer-gold);
  margin-bottom: 8px;
  line-height: 1.3;
}
.timeline-section {
  margin-top: 18px;
}
.timeline-strip {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(20, 26, 36, 0.9), rgba(10, 14, 20, 0.95));
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.timeline-strip::-webkit-scrollbar {
  height: 6px;
}
.timeline-strip::-webkit-scrollbar-thumb {
  background: rgba(245, 181, 43, 0.5);
  border-radius: 999px;
}
.timeline-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: max-content;
  padding: 12px 10px;
  position: relative;
}
.timeline-track::before, .timeline-track::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.28) 1.6px, transparent 1.8px);
  background-size: 14px 8px;
  background-repeat: repeat-x;
  pointer-events: none;
}
.timeline-track::before {
  top: 2px;
}
.timeline-track::after {
  bottom: 2px;
}
.timeline-frame {
  position: relative;
  flex: 0 0 auto;
  width: 150px;
  margin-right: 8px;
  padding: 9px 9px 9px 11px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--cyan);
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 0;
}
.timeline-frame:last-child {
  margin-right: 0;
}
.timeline-frame:nth-child(even) {
  border-left-color: var(--beer-gold);
}
.frame-time {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  color: var(--beer-gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.frame-label {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--text-dim);
}
.episodes-section {
  margin-top: 18px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 8px;
}
.episode-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "sum sum"
    "dur dur";
  align-items: start;
  gap: 2px 8px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  min-width: 0;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.episode-card:hover {
  background: rgba(47, 208, 214, 0.09);
  border-color: rgba(47, 208, 214, 0.4);
}
.ep-number {
  grid-area: num;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  color: var(--cyan);
  white-space: nowrap;
  align-self: center;
}
.ep-title {
  grid-area: title;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  min-width: 0;
  word-break: break-word;
}
.ep-summary {
  grid-area: sum;
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--text-faint);
  margin-top: 2px;
}
.ep-duration {
  grid-area: dur;
  font-size: 11px;
  font-weight: 600;
  color: var(--beer-gold);
  letter-spacing: 0.04em;
  margin-top: 3px;
}
.episode-card.is-active {
  background: linear-gradient(140deg, var(--beer-gold), var(--beer-gold-deep));
  border-color: var(--beer-gold);
  box-shadow: 0 0 18px rgba(245, 181, 43, 0.35);
}
.episode-card.is-active .ep-number, .episode-card.is-active .ep-title, .episode-card.is-active .ep-duration {
  color: var(--ink);
}
.episode-card.is-active .ep-summary {
  color: rgba(10, 13, 18, 0.72);
}
.comments-section {
  margin-top: 18px;
}
.comment-glass {
  border-radius: var(--radius);
  padding: 10px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 24px rgba(0, 0, 0, 0.4);
}
.comment-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  align-items: start;
  gap: 7px;
}
.comment-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 7px 9px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 0;
}
.comment-nick {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--neon-pink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.comment-text {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text-dim);
  word-break: break-word;
}
.rec-region {
  margin-top: 18px;
}
.rec-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 8px;
}
.rec-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  text-decoration: none;
  min-width: 0;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.rec-card:hover, .rec-card:focus-visible {
  background: rgba(255, 92, 155, 0.12);
  border-color: var(--neon-pink);
  color: var(--text);
  text-decoration: none;
  transform: translateY(-2px);
}
.rec-card[data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
  background: #000;
}
.rec-pic {
  display: block;
}
.rec-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12.5px;
  color: var(--text);
  min-width: 0;
  word-break: break-word;
}
.rec-blurb {
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-faint);
  min-width: 0;
  word-break: break-word;
}
.site-footer {
  margin-top: 22px;
  padding: 14px 14px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(10, 13, 18, 0), rgba(20, 26, 36, 0.85));
}
.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: 1240px;
  margin: 0 auto 10px;
}
.footer-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--beer-gold);
  text-decoration: none;
  border-bottom: 1px dashed rgba(245, 181, 43, 0.5);
  padding-bottom: 1px;
}
.footer-link:hover, .footer-link:focus-visible {
  color: var(--cyan);
  text-decoration: none;
  border-bottom-color: var(--cyan);
}
.footer-friends {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  max-width: 1240px;
  margin: 0 auto 12px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}
.friends-label {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  white-space: nowrap;
  margin-right: 2px;
}
.runtime-friend-link {
  font-size: 11.5px;
  color: var(--text-dim);
  text-decoration: none;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  white-space: nowrap;
}
.runtime-friend-link:hover, .runtime-friend-link:focus-visible {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
  text-decoration: none;
}
.footer-disclaimer {
  max-width: 1240px;
  margin: 0 auto;
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-faint);
}
.player.change, .player.click, .player.timeupdate {
  outline: none;
}
.fullscreen .hero-player, .hero-player.fullscreen {
  border-radius: 0;
}
.is-lights-off {
  background: #000;
}
@media (max-width: 900px) {.hero {
    grid-template-columns: minmax(0, 190px) minmax(0, 1fr);
    gap: 13px;
  }
.hero-poster-wrap {
    max-width: 190px;
  }
.rec-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 720px) {.hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 12px;
  }
.hero-poster-wrap {
    max-width: 200px;
    justify-self: start;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-list {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  }}
@media (max-width: 560px) {body {
    font-size: 13.5px;
  }
.header-bar {
    padding: 7px 11px;
  }
.page-main {
    padding: 10px 11px 22px;
  }
.hero {
    padding: 10px;
    border-radius: 12px;
  }
.hero-poster-wrap {
    max-width: 168px;
  }
.movie-title {
    font-size: 19px;
  }
.movie-seo {
    font-size: 12px;
  }
.hero-meta {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-list {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
.timeline-frame {
    width: 132px;
  }
.comment-list {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-row {
    grid-template-columns: minmax(0, 1fr);
  }
.footer-friends {
    gap: 5px;
  }}
@media (max-width: 400px) {.hero-poster-wrap {
    max-width: 140px;
  }
.ctrl-range, .ctrl-range[data-player-action="volume"] {
    flex: 1 1 100%;
    max-width: 100%;
  }}
@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}
