:root {
  --ink: #17110c;
  --soot: #221a13;
  --umber: #2e2318;
  --leather: #3b2c1e;
  --rule: #56422e;
  --amber: #d99a3c;
  --amber-soft: #b8802f;
  --flax: #ecdfc9;
  --flax-dim: #b9a98c;
  --chalk: #8fa3a8;
  --clay: #7d5a3a;
  --serif: "Songti SC", "SimSun", "Noto Serif SC", Georgia, "Times New Roman", serif;
  --mono: "SFMono-Regular", "Menlo", "Consolas", "Courier New", monospace;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 18% 0%, rgba(217, 154, 60, 0.10), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(143, 163, 168, 0.06), transparent 38%),
    repeating-linear-gradient(0deg, rgba(236, 223, 201, 0.018) 0 1px, transparent 1px 4px);
  color: var(--flax);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
}
h1, h2, h3, p, dl, dd, dt, ol, ul, li, figure {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
a {
  color: var(--amber);
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(23, 17, 12, 0.97), rgba(23, 17, 12, 0.88));
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: baseline;
  gap: 14px 20px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--amber);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus-visible {
  color: var(--flax);
  border-bottom-color: var(--amber-soft);
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 14px;
  flex: 1 1 260px;
  min-width: 0;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}
a.runtime-category {
  color: var(--flax-dim);
  text-decoration: none;
  white-space: nowrap;
  padding: 2px 0;
  border-bottom: 1px dashed transparent;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--amber);
  border-bottom-color: var(--amber-soft);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-ledger {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  background-color: var(--soot);
  background-image:
    linear-gradient(180deg, rgba(217, 154, 60, 0.07), transparent 30%),
    repeating-linear-gradient(0deg, rgba(236, 223, 201, 0.016) 0 1px, transparent 1px 5px);
  border: 1px solid var(--rule);
  border-radius: 3px;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.45);
}
.hero-poster-column {
  align-self: start;
}
.poster-frame {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 2 / 3;
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  background: var(--umber);
  box-shadow: 0 0 0 1px rgba(217, 154, 60, 0.14), 0 10px 26px rgba(0, 0, 0, 0.5);
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(217, 154, 60, 0.16), transparent 46%, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}
.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.86) contrast(1.04);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.movie-title {
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: var(--flax);
  text-shadow: 0 0 26px rgba(217, 154, 60, 0.34);
}
.movie-tagline {
  font-size: 0.92rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  border-left: 2px solid var(--amber-soft);
  padding-left: 9px;
}
.movie-seo {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--flax-dim);
  text-align: justify;
}
.hero-player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  margin-top: 4px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: #0e0a07;
  overflow: hidden;
}
.hero-player-shell video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 8px 9px;
  border-top: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(46, 35, 24, 0.92), rgba(23, 17, 12, 0.96));
  font-family: var(--mono);
  font-size: 0.72rem;
}
.player-btn {
  appearance: none;
  cursor: pointer;
  padding: 4px 9px;
  color: var(--flax);
  background: rgba(86, 66, 46, 0.34);
  border: 1px solid var(--rule);
  border-radius: 2px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.player-btn:hover, .player-btn:focus-visible {
  color: var(--ink);
  background: var(--amber);
  border-color: var(--amber);
}
.player-range {
  appearance: none;
  -webkit-appearance: none;
  height: 4px;
  min-width: 90px;
  flex: 1 1 96px;
  cursor: pointer;
  background: linear-gradient(90deg, var(--amber-soft), var(--rule));
  border-radius: 2px;
  border: none;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  border: 1px solid var(--ink);
  cursor: pointer;
}
.player-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--amber);
  cursor: pointer;
}
.player-select {
  appearance: none;
  cursor: pointer;
  padding: 4px 20px 4px 8px;
  color: var(--flax);
  background-color: rgba(86, 66, 46, 0.34);
  background-image: linear-gradient(45deg, transparent 50%, var(--flax-dim) 50%), linear-gradient(135deg, var(--flax-dim) 50%, transparent 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  border: 1px solid var(--rule);
  border-radius: 2px;
}
.player-select:hover, .player-select:focus-visible {
  border-color: var(--amber-soft);
}
.hero-player-shell.is-playing {
  border-color: var(--amber-soft);
  box-shadow: 0 0 0 1px rgba(217, 154, 60, 0.22);
}
.hero-player-shell.is-muted .player-range[data-player-action="volume"] {
  background: linear-gradient(90deg, var(--clay), var(--rule));
}
.hero-player-shell.is-lights-off {
  background: #000;
  box-shadow: 0 0 0 1px rgba(217, 154, 60, 0.3), 0 0 42px rgba(217, 154, 60, 0.16);
}
.hero-player-shell.is-theater {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px rgba(217, 154, 60, 0.36), 0 14px 40px rgba(0, 0, 0, 0.62);
}
.player-btn.is-active, .player-btn.click, .player-btn.change, .player-btn.input {
  color: var(--ink);
  background: var(--amber);
  border-color: var(--amber);
}
.player-btn.play, .player-btn.pause, .player-btn.mute, .player-btn.fullscreen, .player-btn.theater, .player-btn.pip, .player-btn.light, .player-btn.speed, .player-btn.progress, .player-btn.volume, .player-btn.timeupdate {
  letter-spacing: 0.04em;
}
.episode-status {
  border-top: 1px dashed var(--rule);
  border-bottom: 1px dashed var(--rule);
  padding: 6px 2px;
}
.status-line {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--flax-dim);
}
.status-num {
  color: var(--amber);
  font-weight: 700;
  padding: 0 2px;
}
.cast-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
}
.strip-heading {
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-family: var(--mono);
  letter-spacing: 0.22em;
  color: var(--amber);
  text-transform: uppercase;
  border-bottom: 1px solid var(--amber-soft);
  padding-bottom: 2px;
}
.cast-strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 6px;
  flex: 1 1 240px;
  min-width: 0;
}
.cast-chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--clay);
  border-radius: 1px;
  background: rgba(46, 35, 24, 0.56);
}
.cast-chip-name {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--flax);
  white-space: nowrap;
}
.section-heading {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--flax);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.section-heading::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--amber);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(217, 154, 60, 0.5);
}
.section-heading::after {
  content: "";
  flex: 1 1 auto;
  height: 0;
  border-top: 1px dashed var(--rule);
}
.synopsis-ledger {
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: rgba(34, 26, 19, 0.6);
}
.synopsis-body {
  columns: 2;
  column-gap: 22px;
  column-rule: 1px dashed var(--rule);
}
.synopsis-para {
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--flax);
  text-align: justify;
  text-indent: 2em;
  margin-bottom: 8px;
  break-inside: avoid;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.details-ledger {
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: rgba(34, 26, 19, 0.6);
}
.details-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0 18px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(86, 66, 46, 0.72);
}
.detail-key {
  flex: 0 0 4.4em;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--flax-dim);
}
.detail-value {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--amber);
  text-align: right;
  letter-spacing: 0.02em;
}
.timeline-ledger {
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: rgba(34, 26, 19, 0.5);
}
.timeline-scroll {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--amber-soft) var(--umber);
}
.timeline-scroll::-webkit-scrollbar {
  height: 6px;
}
.timeline-scroll::-webkit-scrollbar-track {
  background: var(--umber);
}
.timeline-scroll::-webkit-scrollbar-thumb {
  background: var(--amber-soft);
  border-radius: 3px;
}
.timeline-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: max-content;
  position: relative;
  padding-top: 14px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 32px;
  height: 0;
  border-top: 1px dashed var(--amber-soft);
  opacity: 0.6;
}
.timeline-mark {
  position: relative;
  flex: 0 0 auto;
  width: 176px;
  padding: 0 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.timeline-year {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--amber);
  white-space: nowrap;
}
.timeline-mark::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--ink);
  border: 1px solid var(--amber);
  transform: rotate(45deg);
}
.timeline-label {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--flax);
  padding-top: 12px;
  border-left: 1px solid rgba(86, 66, 46, 0.6);
  padding-left: 10px;
}
.episode-grid-block {
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: rgba(34, 26, 19, 0.5);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.episode-cell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "sum sum"
    "dur dur";
  align-items: start;
  gap: 2px 10px;
  padding: 9px 10px 8px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: rgba(23, 17, 12, 0.5);
  transition: border-color 0.16s ease, background-color 0.16s ease;
}
.episode-cell:hover {
  border-color: var(--amber-soft);
  background: rgba(46, 35, 24, 0.72);
}
.episode-number {
  grid-area: num;
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--amber);
  padding-top: 1px;
}
.episode-title {
  grid-area: title;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--flax);
}
.episode-summary {
  grid-area: sum;
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--flax-dim);
  margin-top: 3px;
}
.episode-duration {
  grid-area: dur;
  justify-self: end;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--chalk);
  margin-top: 5px;
  border-top: 1px dashed rgba(86, 66, 46, 0.7);
  padding-top: 3px;
  width: 100%;
  text-align: right;
}
.cast-columns-block {
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: rgba(34, 26, 19, 0.5);
}
.cast-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
.cast-column {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 8px;
  border: 1px solid rgba(86, 66, 46, 0.7);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(46, 35, 24, 0.6), rgba(23, 17, 12, 0.4));
}
.cast-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--rule);
  border-radius: 1px;
  background-color: var(--umber);
  background-image:
    radial-gradient(circle at 50% 34%, rgba(217, 154, 60, 0.30), transparent 46%),
    repeating-linear-gradient(45deg, rgba(236, 223, 201, 0.05) 0 2px, transparent 2px 6px);
  box-shadow: inset 0 0 26px rgba(0, 0, 0, 0.55);
}
.cast-column-name {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--flax);
}
.cast-column-role {
  font-size: 0.74rem;
  line-height: 1.55;
  color: var(--amber);
  border-top: 1px dashed rgba(86, 66, 46, 0.8);
  padding-top: 5px;
}
.comments-ledger {
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: rgba(34, 26, 19, 0.5);
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.comment-note {
  padding: 8px 10px 9px;
  border: 1px solid rgba(86, 66, 46, 0.72);
  border-top: 1px solid var(--rule);
  border-left: 3px solid var(--clay);
  border-radius: 1px;
  background: rgba(23, 17, 12, 0.46);
}
.comment-author {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 4px;
}
.comment-author::before {
  content: "— ";
  color: var(--flax-dim);
}
.comment-text {
  font-size: 0.78rem;
  line-height: 1.68;
  color: var(--flax);
}
.recommend-region {
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: rgba(34, 26, 19, 0.5);
  counter-reset: rec;
}
.recommend-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
a.recommend-card {
  counter-increment: rec;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  border: 1px solid rgba(86, 66, 46, 0.72);
  border-radius: 2px;
  background: rgba(23, 17, 12, 0.46);
  color: var(--flax);
  text-decoration: none;
  transition: border-color 0.16s ease, background-color 0.16s ease, transform 0.16s ease;
}
a.recommend-card:hover, a.recommend-card:focus-visible {
  border-color: var(--amber-soft);
  background: rgba(46, 35, 24, 0.8);
  transform: translateY(-1px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--rule);
  border-radius: 1px;
  background: var(--umber);
  filter: saturate(0.84) contrast(1.05);
}
a.recommend-card [data-runtime="name"] {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--amber);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
a.recommend-card [data-runtime="name"]::before {
  content: counter(rec, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--flax-dim);
  border: 1px solid var(--rule);
  padding: 0 4px;
  border-radius: 1px;
}
a.recommend-card [data-runtime="blurb"] {
  font-size: 0.74rem;
  line-height: 1.6;
  color: var(--flax-dim);
}
.site-footer {
  margin-top: 20px;
  border-top: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(34, 26, 19, 0.72), rgba(23, 17, 12, 0.98));
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 16px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 9px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  white-space: nowrap;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-home"]:focus-visible, a[data-contract="footer-sitemap"]:focus-visible {
  color: var(--flax);
  border-bottom-color: var(--amber-soft);
}
.footer-disclaimer {
  font-size: 0.72rem;
  line-height: 1.65;
  color: var(--flax-dim);
  max-width: 78ch;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 14px;
  padding-top: 8px;
  border-top: 1px dashed rgba(86, 66, 46, 0.7);
  font-size: 0.74rem;
}
.friend-links-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--chalk);
  white-space: nowrap;
}
a.runtime-friend-link {
  color: var(--flax-dim);
  text-decoration: none;
  border-bottom: 1px dotted var(--clay);
  white-space: nowrap;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--amber);
  border-bottom-color: var(--amber);
}
@media (min-width: 720px) {.hero-ledger {
    grid-template-columns: minmax(190px, 232px) minmax(0, 1fr);
    grid-template-areas:
      "poster copy"
      "poster status"
      "poster strip"
      "syn syn"
      "det det";
    column-gap: 18px;
    row-gap: 12px;
    align-items: start;
  }
.hero-poster-column { grid-area: poster; }
.hero-copy { grid-area: copy; }
.episode-status { grid-area: status; }
.cast-strip { grid-area: strip; }
.synopsis-ledger { grid-area: syn; }
.details-ledger { grid-area: det; }}
@media (min-width: 1040px) {.page-main {
    gap: 20px;
  }
.synopsis-body {
    columns: 2;
  }}
@media (max-width: 1039px) {.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.cast-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }}
@media (max-width: 719px) {.page-main {
    padding: 12px 12px 22px;
    gap: 14px;
  }
.hero-ledger {
    padding: 12px;
  }
.poster-frame {
    max-width: 240px;
    margin: 0 auto;
  }
.synopsis-body {
    columns: 1;
  }
.details-table {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-row {
    grid-template-columns: minmax(0, 1fr);
  }
.player-range {
    flex: 1 1 100%;
  }
.timeline-mark {
    width: 156px;
  }}
@media (max-width: 419px) {.header-inner {
    padding: 7px 12px;
  }
.cast-columns {
    grid-template-columns: minmax(0, 1fr);
  }
.player-controls {
    font-size: 0.68rem;
  }
.player-btn {
    padding: 3px 7px;
  }}
@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}
