:root {
  --ink: #0d1218;
  --steel-900: #10161d;
  --steel-800: #161e27;
  --steel-700: #1d2833;
  --steel-600: #26333f;
  --steel-500: #35485a;
  --steel-400: #4e6478;
  --steel-300: #7b93a8;
  --steel-200: #a9bdcc;
  --steel-100: #d3dee6;
  --cold: #9fb6c6;
  --gold: #c9a227;
  --gold-dim: #8f7420;
  --gold-glow: rgba(201, 162, 39, 0.4);
  --line: rgba(159, 182, 198, 0.22);
  --line-strong: rgba(159, 182, 198, 0.4);
  --mono: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", monospace;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background-color: var(--steel-900);
  background-image:
    linear-gradient(rgba(159, 182, 198, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(159, 182, 198, 0.045) 1px, transparent 1px);
  background-size: 100% 26px, 26px 100%;
  color: var(--steel-100);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3 {
  line-height: 1.2;
  font-weight: 800;
}
button, input, video {
  font: inherit;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(13, 18, 24, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 8px 16px;
}
a[data-contract="site-name"].site-brand {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  border-left: 3px solid var(--gold);
  padding-left: 8px;
}
a[data-contract="site-name"].site-brand:hover {
  color: #e6c245;
}
.header-nav {
  min-width: 0;
  flex: 1 1 auto;
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--steel-200);
  text-decoration: none;
  padding: 3px 9px;
  border: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 5px 100%, 0 calc(100% - 5px));
  transition: color 0.15s, border-color 0.15s, background-color 0.15s;
}
a.runtime-category:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
  background: rgba(201, 162, 39, 0.08);
}
.page-main {
  max-width: 1360px;
  margin: 0 auto;
  padding: 12px 16px 0;
}
.section-heading {
  font-size: 15px;
  letter-spacing: 0.22em;
  color: var(--steel-200);
  text-transform: uppercase;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 44px;
  height: 2px;
  background: var(--gold);
}
.movie-overview {
  margin-bottom: 18px;
}
.overview-shell {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.poster-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.poster-frame {
  position: relative;
  border: 1px solid var(--line-strong);
  background: var(--steel-800);
  padding: 0;
  overflow: hidden;
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 18, 24, 0) 42%, rgba(13, 18, 24, 0.88) 100%);
  pointer-events: none;
}
.poster-image {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(0.72) contrast(1.08);
}
.poster-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding: 8px 10px;
  border-top: 1px solid var(--gold-dim);
  background: rgba(13, 18, 24, 0.72);
  width: 100%;
}
.cast-block {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--steel-800), var(--steel-900));
  padding: 10px 10px 12px;
}
.cast-heading {
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--steel-300);
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
}
.cast-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 6px 4px;
}
.cast-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1 1 44px;
  min-width: 44px;
  max-width: 68px;
  padding: 2px 0;
}
.cast-avatar {
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, var(--steel-300) 0%, var(--steel-500) 46%, var(--steel-800) 100%);
  border: 1px solid var(--line-strong);
  width: 34px;
  height: 34px;
  flex: none;
}
.cast-rank-1 .cast-avatar {
  width: 52px;
  height: 52px;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.18), 0 0 12px var(--gold-glow);
}
.cast-rank-2 .cast-avatar {
  width: 46px;
  height: 46px;
  border-color: var(--gold-dim);
}
.cast-rank-3 .cast-avatar {
  width: 41px;
  height: 41px;
  border-color: var(--steel-400);
}
.cast-rank-4 .cast-avatar {
  width: 37px;
  height: 37px;
}
.cast-rank-5 .cast-avatar {
  width: 34px;
  height: 34px;
}
.cast-rank-6 .cast-avatar {
  width: 31px;
  height: 31px;
}
.cast-rank-7 .cast-avatar {
  width: 28px;
  height: 28px;
}
.cast-rank-8 .cast-avatar {
  width: 25px;
  height: 25px;
  opacity: 0.82;
}
.cast-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--steel-100);
  white-space: nowrap;
  line-height: 1.25;
}
.cast-role {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  color: var(--steel-400);
  white-space: nowrap;
  line-height: 1.2;
}
.cast-rank-1 .cast-name {
  color: var(--gold);
}
.overview-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: start;
}
.title-block {
  border-left: 3px solid var(--gold);
  padding-left: 12px;
  width: 100%;
}
.movie-title {
  font-size: clamp(21px, 3.4vw, 34px);
  letter-spacing: 0.02em;
  color: #fff;
}
.movie-tagline {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-top: 3px;
}
.movie-seo {
  font-size: 13px;
  color: var(--steel-300);
  line-height: 1.65;
  padding: 8px 10px;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  width: 100%;
}
.episode-status {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--mono);
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: var(--steel-800);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}
.status-number {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.status-divider {
  font-size: 15px;
  color: var(--steel-500);
}
.status-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--steel-300);
  margin-left: 2px;
}
.player-shell {
  width: 100%;
  max-width: none;
  border: 1px solid var(--line-strong);
  background: #000;
  position: relative;
}
.player-shell video {
  display: block;
  width: 100%;
  background: #000;
}
.player-shell.is-theater {
  box-shadow: 0 0 0 2px var(--gold-dim);
}
.player-shell.is-lights-off {
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.5), 0 0 40px rgba(0, 0, 0, 0.9) inset;
}
.player-shell.is-fullscreen video {
  height: 100%;
  object-fit: contain;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  background: var(--steel-800);
  border-top: 1px solid var(--line);
}
.control-button {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--steel-200);
  background: var(--steel-700);
  border: 1px solid var(--line);
  padding: 3px 8px;
  cursor: pointer;
  white-space: nowrap;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%);
  transition: color 0.15s, border-color 0.15s, background-color 0.15s;
}
.control-button:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
}
.control-button.is-active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.12);
}
.control-progress, .control-volume {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--steel-600);
  border: none;
  cursor: pointer;
  accent-color: var(--gold);
}
.control-progress {
  flex: 1 1 140px;
  min-width: 90px;
}
.control-volume {
  flex: 0 1 80px;
  min-width: 56px;
}
.control-progress::-webkit-slider-thumb, .control-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 14px;
  background: var(--gold);
  border: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.control-progress::-moz-range-thumb, .control-volume::-moz-range-thumb {
  width: 10px;
  height: 14px;
  background: var(--gold);
  border: none;
  border-radius: 0;
}
.synopsis-block {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--steel-800);
  padding: 10px 12px 12px;
}
.synopsis-heading {
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--steel-200);
  padding-bottom: 5px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.synopsis-paragraph {
  font-size: 13px;
  line-height: 1.7;
  color: var(--steel-200);
}
.synopsis-paragraph + .synopsis-paragraph {
  margin-top: 7px;
  padding-top: 7px;
  border-top: 1px dashed rgba(159, 182, 198, 0.14);
}
.details-block {
  width: 100%;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--steel-800), var(--steel-900));
  padding: 10px 12px 12px;
}
.details-heading {
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--steel-200);
  padding-bottom: 5px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 6px 14px;
}
.detail-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 3px 0;
  border-bottom: 1px solid rgba(159, 182, 198, 0.1);
  min-width: 0;
}
.detail-key {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--steel-400);
  flex: none;
  min-width: 56px;
}
.detail-value {
  font-size: 13px;
  color: var(--steel-100);
  min-width: 0;
  word-break: break-word;
}
.timeline-section {
  margin-bottom: 16px;
}
.timeline-list {
  position: relative;
  padding: 4px 0 2px;
}
.timeline-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-strong) 12%, var(--line-strong) 88%, transparent);
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr);
  align-items: center;
  gap: 0 8px;
  padding: 4px 0;
}
.timeline-time {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  white-space: nowrap;
}
.timeline-label {
  font-size: 12.5px;
  color: var(--steel-200);
  padding: 4px 8px;
  background: var(--steel-800);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%);
}
.timeline-node {
  grid-column: 2;
  justify-self: center;
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px var(--steel-900), 0 0 8px var(--gold-glow);
  z-index: 2;
}
.timeline-left .timeline-time {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}
.timeline-left .timeline-label {
  grid-column: 3;
}
.timeline-right .timeline-label {
  grid-column: 1;
  text-align: right;
}
.timeline-right .timeline-time {
  grid-column: 3;
  justify-self: start;
}
.episodes-section {
  margin-bottom: 16px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.episode-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 3px 8px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  background: var(--steel-800);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%);
  transition: border-color 0.15s, background-color 0.15s;
}
.episode-card:hover {
  border-color: var(--gold-dim);
  background: var(--steel-700);
}
.episode-number {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.episode-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--steel-100);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.episode-duration {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--steel-400);
  white-space: nowrap;
}
.episode-summary {
  grid-column: 1 / -1;
  font-size: 11px;
  line-height: 1.5;
  color: var(--steel-300);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.18s ease, max-height 0.22s ease;
}
.episode-card:hover .episode-summary, .episode-card:focus-within .episode-summary {
  opacity: 1;
  max-height: 70px;
}
.comments-section {
  margin-bottom: 16px;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px 12px;
  align-items: start;
  padding: 4px 2px 6px;
}
.comment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 9px 11px 11px;
  background: var(--steel-800);
  border: 1px solid var(--line);
  box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.35);
  transform-origin: 50% 0;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.comment-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 10px;
  width: 26px;
  height: 2px;
  background: var(--gold-dim);
}
.comment-card:hover {
  transform: rotate(0deg) translateY(-2px);
  border-color: var(--line-strong);
  z-index: 3;
}
.comment-rotate-1 { transform: rotate(-1.6deg); }
.comment-rotate-2 { transform: rotate(1.2deg); }
.comment-rotate-3 { transform: rotate(-0.8deg); }
.comment-rotate-4 { transform: rotate(1.8deg); }
.comment-rotate-5 { transform: rotate(-1.1deg); }
.comment-rotate-6 { transform: rotate(0.9deg); }
.comment-nickname {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--steel-200);
}
.recommend-region {
  margin-bottom: 16px;
}
.recommend-heading {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold);
  padding: 3px 10px;
  border: 1px solid var(--gold-dim);
  margin-bottom: 8px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
}
.recommend-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 6px;
  align-items: start;
}
a.recommend-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  align-items: start;
  gap: 4px 8px;
  padding: 7px 8px;
  border: 1px solid var(--line);
  background: var(--steel-800);
  color: var(--steel-200);
  text-decoration: none;
  transition: border-color 0.15s, background-color 0.15s;
}
a.recommend-item:hover {
  border-color: var(--gold-dim);
  background: var(--steel-700);
}
.recommend-index {
  grid-row: 1 / span 3;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  padding-top: 2px;
  letter-spacing: 0.02em;
}
[data-runtime="recommendation"] img.recommend-thumb {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  filter: saturate(0.7) contrast(1.05);
}
.recommend-name {
  grid-column: 2;
  grid-row: 2;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--steel-100);
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.recommend-blurb {
  grid-column: 2;
  grid-row: 3;
  font-size: 11px;
  line-height: 1.5;
  color: var(--steel-400);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.site-footer {
  margin-top: 10px;
  border-top: 1px solid var(--line);
  background: var(--steel-900);
  padding: 12px 16px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 10px;
  flex: 1 1 320px;
  min-width: 0;
}
.friend-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--steel-400);
  padding-right: 8px;
  border-right: 1px solid var(--line);
}
a.runtime-friend-link {
  font-size: 12px;
  color: var(--steel-300);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
a.runtime-friend-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold-dim);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: none;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--steel-300);
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 3px 9px;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
}
.footer-disclaimer {
  flex: 1 1 100%;
  font-size: 11px;
  line-height: 1.6;
  color: var(--steel-500);
  padding-top: 8px;
  border-top: 1px dashed rgba(159, 182, 198, 0.12);
}
.player-shell.is-theater video {
  filter: contrast(1.08) saturate(0.9);
}
.player-shell.is-lights-off::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  pointer-events: none;
}
.player-shell.is-lights-off .player-controls {
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) {.overview-shell {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-column {
    display: grid;
    grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }
.poster-frame {
    align-self: start;
  }}
@media (max-width: 720px) {.header-bar {
    flex-wrap: wrap;
    gap: 8px;
    padding: 7px 12px;
  }
.page-main {
    padding: 10px 12px 0;
  }
.poster-column {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-image {
    aspect-ratio: 3 / 4;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-summary {
    opacity: 1;
    max-height: 90px;
  }
.timeline-list::before {
    left: 12px;
    transform: none;
  }
.timeline-item {
    grid-template-columns: 24px minmax(0, 1fr);
    grid-template-areas:
      "node time"
      "node label";
    align-items: start;
    gap: 2px 8px;
    padding: 5px 0;
  }
.timeline-node {
    grid-area: node;
    grid-column: auto;
    margin-top: 4px;
  }
.timeline-time, .timeline-left .timeline-time, .timeline-right .timeline-time {
    grid-area: time;
    grid-column: auto;
    justify-self: start;
    text-align: left;
  }
.timeline-label, .timeline-left .timeline-label, .timeline-right .timeline-label {
    grid-area: label;
    grid-column: auto;
    text-align: left;
  }
.recommend-list {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-card, .comment-rotate-1, .comment-rotate-2, .comment-rotate-3, .comment-rotate-4, .comment-rotate-5, .comment-rotate-6 {
    transform: none;
  }
.site-footer {
    padding: 12px 12px 18px;
  }}
@media (max-width: 420px) {body {
    font-size: 14px;
  }
.player-controls {
    gap: 4px;
  }
.control-button {
    font-size: 10px;
    padding: 3px 6px;
  }
.control-progress {
    flex: 1 1 100%;
    order: 3;
  }
.cast-member {
    flex-basis: 38px;
    min-width: 38px;
  }}

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}
