*, *::before, *::after { box-sizing: border-box; }
html, body, h2, h3, p, ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
}
ul, ol { list-style: none; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
:root {
  --bg-deep: #070b12;
  --bg-panel: #0d1420;
  --bg-raise: #121b2a;
  --bg-raise-2: #172234;
  --line: #1f2c40;
  --line-soft: #182335;
  --ink: #d7e2f0;
  --ink-strong: #f2f7fd;
  --ink-dim: #7d8ea6;
  --ink-faint: #5a6a80;
  --amber: #ffb43c;
  --amber-deep: #d98a14;
  --amber-glow: rgba(255, 180, 60, 0.55);
  --cyan: #4fb8d8;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
html {
  background: var(--bg-deep);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 78% -8%, rgba(79, 184, 216, 0.09), transparent 62%),
    radial-gradient(900px 520px at 8% 12%, rgba(255, 180, 60, 0.05), transparent 58%),
    linear-gradient(180deg, #070b12 0%, #080d16 46%, #05080e 100%);
  background-attachment: fixed;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 11, 18, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 16px;
}
a[data-contract="site-name"] {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--ink-strong);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
a[data-contract="site-name"]:hover {
  color: var(--amber);
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  padding: 3px 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
a.runtime-category:hover {
  color: var(--amber);
  border-color: rgba(255, 180, 60, 0.4);
  background: rgba(255, 180, 60, 0.07);
}
.movie-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px 34px;
}
.player-section {
  margin-bottom: 20px;
}
.player-shell {
  position: relative;
  background: #04070c;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.62), inset 0 0 0 1px rgba(79, 184, 216, 0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.player-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.player-toolbar {
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #0b111c 0%, #080d16 100%);
  padding: 8px 10px;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.control-btn {
  flex: 0 0 auto;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.control-btn:hover {
  color: var(--amber);
  border-color: rgba(255, 180, 60, 0.45);
  background: var(--bg-raise-2);
}
.control-range {
  flex: 1 1 90px;
  min-width: 70px;
  height: 18px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
}
.control-range::-webkit-slider-runnable-track {
  height: 3px;
  background: #1d2a3d;
  border-radius: 2px;
}
.control-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber-glow);
}
.control-range::-moz-range-track {
  height: 3px;
  background: #1d2a3d;
  border-radius: 2px;
}
.control-range::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber-glow);
}
.control-select {
  flex: 0 0 auto;
  padding: 4px 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
}
.control-select:focus-visible, .control-btn:focus-visible {
  outline: 1px solid var(--amber);
  outline-offset: 1px;
}
.player-shell.is-playing {
  border-color: rgba(79, 184, 216, 0.4);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(79, 184, 216, 0.22);
}
.player-shell.is-muted .control-range[data-player-action="volume"]::-webkit-slider-thumb {
  background: var(--ink-faint);
  box-shadow: none;
}
.player-shell.is-light-off {
  background: #000;
  border-color: #05080d;
}
.player-shell.is-light-off .player-toolbar {
  opacity: 0.34;
}
.player-shell.is-theater {
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  border-left: none;
  border-right: none;
}
.movie-overview {
  margin-bottom: 22px;
}
.overview-shell {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr) minmax(0, 0.92fr);
  grid-template-areas:
    "poster head cast"
    "poster synopsis synopsis"
    "status details details";
  gap: 12px 20px;
  align-items: start;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(19, 28, 43, 0.92) 0%, rgba(10, 16, 26, 0.92) 100%);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
}
.overview-poster-wrap {
  grid-area: poster;
  position: relative;
  align-self: start;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: #05080e;
}
.overview-poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(79, 184, 216, 0.1) 0%, transparent 42%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}
.overview-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  height: auto;
}
.overview-head {
  grid-area: head;
  min-width: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.overview-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
}
.overview-title {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 200;
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: var(--ink-strong);
}
.overview-tagline {
  margin-top: 7px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--amber);
}
.overview-seo {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--ink-dim);
  max-width: 62ch;
}
.cast {
  grid-area: cast;
  min-width: 0;
  align-self: start;
}
.cast-heading, .synopsis-heading, .details-heading {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 9px;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: flex-start;
}
.cast-item {
  flex: 0 1 auto;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
  padding: 5px 9px 5px 5px;
  background: rgba(8, 13, 22, 0.6);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  transition: border-color 0.16s ease, background 0.16s ease;
}
.cast-item:hover {
  border-color: rgba(255, 180, 60, 0.35);
  background: rgba(255, 180, 60, 0.05);
}
.cast-avatar {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: #0a0f18;
  background: radial-gradient(circle at 32% 28%, #a9d6e6 0%, #4fb8d8 45%, #2b6f8c 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}
.cast-item:nth-child(2n) .cast-avatar {
  background: radial-gradient(circle at 32% 28%, #ffd89a 0%, #ffb43c 45%, #a86610 100%);
}
.cast-item:nth-child(3n) .cast-avatar {
  background: radial-gradient(circle at 32% 28%, #9fb0c9 0%, #5b7391 45%, #2f3d52 100%);
}
.cast-name {
  grid-column: 2;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-strong);
  line-height: 1.3;
  white-space: nowrap;
}
.cast-role {
  grid-column: 2;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  line-height: 1.3;
  white-space: nowrap;
}
.synopsis {
  grid-area: synopsis;
  min-width: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  columns: 2;
  column-gap: 24px;
}
.synopsis-heading {
  column-span: all;
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.78;
  color: var(--ink-dim);
  margin-bottom: 8px;
  break-inside: avoid;
}
.synopsis-para:last-child {
  margin-bottom: 0;
  color: var(--ink);
}
.episode-status {
  grid-area: status;
  align-self: start;
  padding: 9px 12px;
  background: rgba(255, 180, 60, 0.06);
  border: 1px solid rgba(255, 180, 60, 0.24);
  border-left: 3px solid var(--amber);
  border-radius: 2px;
}
.status-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.status-label {
  color: var(--ink-faint);
  font-size: 10.5px;
  letter-spacing: 0.16em;
}
.status-value {
  font-size: 17px;
  font-weight: 200;
  color: var(--ink-strong);
  line-height: 1.1;
}
.status-value-accent {
  color: var(--amber);
  font-weight: 600;
  text-shadow: 0 0 14px var(--amber-glow);
}
.status-sep {
  color: var(--ink-faint);
  padding: 0 2px;
}
.details {
  grid-area: details;
  min-width: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 0 18px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid var(--line-soft);
}
.detail-key {
  flex: 0 0 auto;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  white-space: nowrap;
}
.detail-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
  min-width: 0;
}
.detail-value-accent {
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.section-heading {
  font-size: 19px;
  font-weight: 200;
  letter-spacing: 0.24em;
  color: var(--ink-strong);
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 2px solid var(--amber);
  line-height: 1.25;
}
.timeline-section {
  margin-bottom: 22px;
}
.timeline-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(11, 17, 27, 0.7) 0%, rgba(7, 11, 18, 0.7) 100%);
  scrollbar-color: var(--amber-deep) #0d1420;
  scrollbar-width: thin;
}
.timeline-scroller::-webkit-scrollbar {
  height: 6px;
}
.timeline-scroller::-webkit-scrollbar-track {
  background: #0d1420;
}
.timeline-scroller::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--amber-deep), var(--amber));
  border-radius: 3px;
}
.timeline-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: max-content;
  padding: 14px 0 12px;
  position: relative;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 6%, var(--line) 94%, transparent);
  pointer-events: none;
}
.timeline-item {
  flex: 0 0 210px;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  padding: 0 14px;
  border-right: 1px solid var(--line-soft);
  align-content: start;
}
.timeline-item:last-child {
  border-right: none;
}
.timeline-dot {
  grid-row: 1 / span 2;
  align-self: start;
  margin-top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(255, 180, 60, 0.12), 0 0 12px var(--amber-glow);
  animation: pulse 2.4s ease-in-out infinite;
}
.timeline-item:nth-child(2) .timeline-dot { animation-delay: 0.3s; }
.timeline-item:nth-child(3) .timeline-dot { animation-delay: 0.6s; }
.timeline-item:nth-child(4) .timeline-dot { animation-delay: 0.9s; }
.timeline-item:nth-child(5) .timeline-dot { animation-delay: 1.2s; }
.timeline-item:nth-child(6) .timeline-dot { animation-delay: 1.5s; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.42; transform: scale(0.82); }
}
.timeline-timecode {
  grid-column: 2;
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: var(--ink-strong);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.timeline-label {
  grid-column: 2;
  margin-top: 5px;
  font-size: 11.5px;
  line-height: 1.62;
  color: var(--ink-dim);
}
.episodes-section {
  margin-bottom: 22px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.episode-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "sum sum"
    "dur dur";
  gap: 4px 10px;
  padding: 11px 13px;
  background: rgba(13, 20, 32, 0.82);
  border: 1px solid var(--line-soft);
  border-left: 2px solid #22304a;
  border-radius: 2px;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}
.episode-card:hover {
  background: rgba(18, 27, 42, 0.92);
  border-left-color: var(--cyan);
}
.episode-number {
  grid-area: num;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  padding-top: 3px;
  white-space: nowrap;
}
.episode-title {
  grid-area: title;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-strong);
  line-height: 1.35;
}
.episode-summary {
  grid-area: sum;
  font-size: 11.5px;
  line-height: 1.72;
  color: var(--ink-dim);
}
.episode-duration {
  grid-area: dur;
  justify-self: start;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  padding: 1px 7px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
}
.episode-card-active {
  background: linear-gradient(180deg, rgba(255, 180, 60, 0.1) 0%, rgba(13, 20, 32, 0.9) 100%);
  border-color: rgba(255, 180, 60, 0.34);
  border-left-color: var(--amber);
  box-shadow: 0 0 0 1px rgba(255, 180, 60, 0.08), 0 8px 22px rgba(0, 0, 0, 0.4);
}
.episode-card-active .episode-number {
  color: var(--amber);
}
.episode-card-active .episode-duration {
  color: var(--amber);
  border-color: rgba(255, 180, 60, 0.4);
}
.comments-section {
  margin-bottom: 22px;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.comment-card {
  padding: 11px 13px 12px;
  background: rgba(15, 23, 36, 0.92);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.34);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.comment-card:nth-child(1) { transform: translateY(0); }
.comment-card:nth-child(2) { transform: translateY(9px); }
.comment-card:nth-child(3) { transform: translateY(4px); }
.comment-card:nth-child(4) { transform: translateY(13px); }
.comment-card:nth-child(5) { transform: translateY(7px); }
.comment-card:hover {
  transform: translateY(0);
  border-color: rgba(255, 180, 60, 0.34);
}
.comment-nickname {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 5px;
}
.comment-text {
  font-size: 12px;
  line-height: 1.74;
  color: var(--ink-dim);
}
.recommendations {
  margin-bottom: 22px;
}
.recommendation-grid {
  display: grid;
  gap: 10px;
  align-items: start;
}
.recommendation-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
a.recommendation-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: rgba(12, 19, 30, 0.86);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}
a.recommendation-card:hover {
  border-color: rgba(255, 180, 60, 0.42);
  background: rgba(19, 28, 43, 0.95);
  transform: translateY(-2px);
}
.recommendation-thumb {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
  background: #060a11;
}
.recommendation-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 8, 14, 0.72) 100%);
  pointer-events: none;
}
[data-runtime="recommendation"] img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}
.recommendation-name {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-strong);
  line-height: 1.4;
}
.recommendation-blurb {
  font-size: 11px;
  line-height: 1.66;
  color: var(--ink-faint);
}
.site-footer {
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(9, 14, 23, 0.9) 0%, #05080e 100%);
  padding: 18px 16px 26px;
  display: grid;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.72;
  color: var(--ink-faint);
  max-width: 76ch;
}
.footer-nav-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  padding: 3px 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  text-decoration: none;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  transition: color 0.16s ease, border-color 0.16s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--amber);
  border-color: rgba(255, 180, 60, 0.4);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 8px;
}
.friend-links-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--ink-faint);
  margin-right: 4px;
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11px;
  color: var(--ink-dim);
  text-decoration: none;
  padding: 1px 6px;
  border-bottom: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}
a.runtime-friend-link:hover {
  color: var(--amber);
  border-bottom-color: rgba(255, 180, 60, 0.5);
}
@media (max-width: 1024px) {.overview-shell {
    grid-template-columns: 196px minmax(0, 1fr);
    grid-template-areas:
      "poster head"
      "poster cast"
      "synopsis synopsis"
      "status details";
  }
.synopsis {
    columns: 2;
  }
.comment-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 780px) {.overview-shell {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "poster"
      "head"
      "cast"
      "synopsis"
      "status"
      "details";
    gap: 12px;
  }
.overview-poster-wrap {
    max-width: 260px;
  }
.synopsis {
    columns: 1;
  }
.episode-grid, .recommendation-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-card:nth-child(n) {
    transform: none;
  }}
@media (max-width: 560px) {.header-inner {
    padding: 8px 12px;
  }
.movie-page {
    padding: 12px 12px 26px;
  }
.overview-shell {
    padding: 12px;
  }
.overview-poster-wrap {
    max-width: none;
  }
.episode-grid, .recommendation-grid-3, .comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-item {
    flex-basis: 176px;
    padding: 0 11px;
  }
.section-heading {
    font-size: 17px;
    letter-spacing: 0.18em;
  }}
@media (prefers-reduced-motion: reduce) {.timeline-dot {
    animation: none;
  }
* {
    transition-duration: 0.01ms !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}
