*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background-color: #0d1219;
  background-image:
    radial-gradient(120% 90% at 12% -6%, #1b2836 0%, #0d1219 58%),
    linear-gradient(180deg, #0b1017 0%, #10161f 100%);
  color: #c8d2dc;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", "Noto Sans CJK SC", "Source Han Sans SC", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, p, dl, dd, dt, ol, ul, li, figure, nav, header, footer, section, main {
  margin: 0;
  padding: 0;
}
ol, ul { list-style: none; }
img {
  display: block;
  max-width: 100%;
  border: 0;
}
button, input, select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  border: 0;
  background: none;
}
a {
  color: #7fc0d8;
  text-decoration: none;
}
a:hover { text-decoration: underline; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 8px 16px;
  background: linear-gradient(180deg, #101a24 0%, #0d141c 100%);
  border-bottom: 1px solid #1f2d3c;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02) inset;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.site-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #e8eef4;
  text-decoration: none;
  padding-left: 10px;
  border-left: 3px solid #ff6b2c;
  line-height: 1.2;
}
.site-name:hover { color: #ffa06a; text-decoration: none; }
.category-rail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 12px;
  min-width: 0;
}
.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 4px 9px;
  color: #9fb2c2;
  background: #16212c;
  border: 1px solid #24333f;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.runtime-category:hover {
  color: #ffb083;
  border-color: #ff6b2c;
  background: #1d2a37;
  text-decoration: none;
}
.page-main {
  display: block;
  padding: 10px 16px 26px;
  max-width: 1440px;
  margin: 0 auto;
}
.hero-cabin {
  position: relative;
  margin-bottom: 16px;
  border: 1px solid #1d2a37;
  border-radius: 3px;
  background:
    linear-gradient(180deg, #0a121b 0%, #0e1720 46%, #131d26 100%);
  overflow: hidden;
}
.hero-truck {
  position: relative;
  height: 118px;
  background: linear-gradient(180deg, #060b11 0%, #0d1a26 70%, #16232f 100%);
  border-bottom: 1px solid #1b2a38;
  overflow: hidden;
}
.hero-headlight-beam {
  position: absolute;
  top: 20px;
  left: -4%;
  right: -4%;
  height: 26px;
  background: linear-gradient(90deg,
    rgba(255, 107, 44, 0) 0%,
    rgba(255, 107, 44, 0.35) 12%,
    rgba(255, 168, 96, 0.85) 46%,
    rgba(255, 214, 170, 0.95) 68%,
    rgba(255, 150, 80, 0.55) 86%,
    rgba(255, 107, 44, 0) 100%);
  filter: blur(4px);
  transform: skewY(-1.2deg);
  mix-blend-mode: screen;
}
.hero-headlight-beam::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 30%;
  right: 2%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 240, 220, 0) 0%, rgba(255, 240, 220, 0.9) 60%, rgba(255, 240, 220, 0) 100%);
  filter: blur(1px);
}
.hero-truck-silhouette {
  position: absolute;
  bottom: 0;
  right: 3%;
  width: 62%;
  max-width: 720px;
  height: 84px;
  background:
    linear-gradient(180deg, #1c2b39 0%, #0e1822 100%);
  clip-path: polygon(
    0 100%,
    0 46%,
    8% 46%,
    8% 20%,
    46% 20%,
    46% 6%,
    84% 6%,
    88% 12%,
    100% 12%,
    100% 100%
  );
  opacity: 0.92;
  box-shadow: 0 0 0 1px rgba(120, 160, 190, 0.06) inset;
}
.hero-truck-silhouette::before {
  content: "";
  position: absolute;
  left: 84%;
  top: 14%;
  width: 14%;
  height: 5px;
  background: #ff8a3d;
  box-shadow: 0 0 14px 4px rgba(255, 107, 44, 0.75);
  border-radius: 2px;
}
.hero-truck-silhouette::after {
  content: "";
  position: absolute;
  left: 6%;
  bottom: -2px;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, rgba(255, 107, 44, 0.5), rgba(255, 107, 44, 0));
}
.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  align-items: start;
  background: linear-gradient(180deg, #101a24 0%, #0d151d 100%);
}
.poster-frame {
  width: 100%;
  max-width: 320px;
  margin: 0;
  border: 1px solid #26343f;
  border-radius: 3px;
  overflow: hidden;
  background: #0a1017;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55);
}
.poster-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}
.overview-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.movie-title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #f2f6fa;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.movie-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #ff9a5e;
  padding-left: 9px;
  border-left: 3px solid #ff6b2c;
  line-height: 1.3;
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  border: 1px solid #24323e;
  border-radius: 3px;
  background: #070d13;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}
.player-shell video {
  display: block;
  width: 100%;
  background: #000;
  aspect-ratio: 16 / 9;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  background: linear-gradient(180deg, #16212c 0%, #101a23 100%);
  border-top: 1px solid #223040;
}
.player-controls button, .player-controls select {
  flex: 0 0 auto;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #b9c8d6;
  background: #1c2a37;
  border: 1px solid #2c3d4c;
  border-radius: 2px;
  line-height: 1.4;
  transition: color 0.14s ease, border-color 0.14s ease, background 0.14s ease;
}
.player-controls button:hover, .player-controls select:hover {
  color: #ffb083;
  border-color: #ff6b2c;
  background: #223140;
}
.player-controls input[type="range"] {
  flex: 1 1 90px;
  min-width: 70px;
  height: 4px;
  margin: 0 2px;
  -webkit-appearance: none;
  appearance: none;
  background: #26343f;
  border-radius: 2px;
  cursor: pointer;
}
.player-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff6b2c;
  border: 0;
  box-shadow: 0 0 6px rgba(255, 107, 44, 0.7);
}
.player-controls input[type="range"]::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: #ff6b2c;
  box-shadow: 0 0 6px rgba(255, 107, 44, 0.7);
}
.player-controls input[type="range"].volume, .player-controls input[data-player-action="volume"] {
  flex: 0 1 70px;
  min-width: 52px;
}
.player-shell.is-theater {
  border-color: #ff6b2c;
}
.player-shell.is-lights-off {
  background: #000;
}
.player-shell.is-lights-off .player-controls {
  background: #05090d;
  border-top-color: #1a2530;
}
.player-controls button.is-active {
  color: #0d1219;
  background: #ff6b2c;
  border-color: #ff6b2c;
}
.player-controls button.is-muted {
  color: #ff9a5e;
  border-color: #6d3a1c;
  background: #24160f;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  padding: 8px 10px;
  background: #131e28;
  border: 1px solid #22303c;
  border-left: 3px solid #ff6b2c;
  border-radius: 2px;
}
.status-heading {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #8fa3b5;
}
.status-line {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffb083;
}
.cast-strip {
  padding: 9px 10px;
  background: #121c26;
  border: 1px solid #22303c;
  border-radius: 2px;
}
.cast-heading, .synopsis-heading, .details-heading, .timeline-heading, .episodes-heading, .comments-heading, .status-heading {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #93a7b8;
  text-transform: uppercase;
}
.cast-heading, .synopsis-heading, .details-heading {
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid #22303c;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.cast-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 7px;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}
.cast-avatar {
  grid-row: 1 / span 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #3f5364 0%, #22303c 62%, #16212c 100%);
  border: 1px solid #2f4150;
  box-shadow: 0 0 0 1px rgba(255, 107, 44, 0.14) inset;
  position: relative;
  overflow: hidden;
}
.cast-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 22px;
  height: 16px;
  border-radius: 50% 50% 0 0;
  background: #4a6072;
  opacity: 0.7;
}
.cast-name {
  font-size: 12px;
  font-weight: 700;
  color: #e2eaf1;
  line-height: 1.25;
  white-space: nowrap;
}
.cast-role {
  font-size: 10px;
  font-weight: 500;
  color: #7e93a5;
  letter-spacing: 0.02em;
  line-height: 1.25;
  white-space: nowrap;
}
.synopsis-block {
  padding: 9px 10px;
  background: #121c26;
  border: 1px solid #22303c;
  border-radius: 2px;
}
.synopsis-lead {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  color: #cfdae4;
  margin-bottom: 8px;
  padding: 7px 9px;
  background: #16222d;
  border-left: 2px solid #3f5567;
  border-radius: 2px;
}
.synopsis-paragraphs {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
}
.synopsis-paragraphs p {
  font-size: 12px;
  line-height: 1.62;
  color: #9dafbe;
}
.details-block {
  padding: 9px 10px;
  background: #121c26;
  border: 1px solid #22303c;
  border-radius: 2px;
}
.details-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}
.details-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
  padding: 4px 0;
  border-bottom: 1px dashed #1f2c38;
  font-size: 12px;
}
.details-row:last-child { border-bottom: 0; }
.details-row dt {
  color: #7e93a5;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.details-row dd {
  color: #d3dee7;
  font-weight: 600;
  min-width: 0;
  overflow-wrap: anywhere;
}
.timeline-gauge {
  margin-bottom: 16px;
  padding: 10px 12px 12px;
  background: linear-gradient(180deg, #101a24 0%, #0c141c 100%);
  border: 1px solid #1d2a37;
  border-radius: 3px;
}
.timeline-heading {
  margin-bottom: 10px;
  padding-left: 9px;
  border-left: 3px solid #ff6b2c;
  line-height: 1.3;
}
.timeline-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 26px 4px 10px;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: #2c3d4c #0d151d;
  -webkit-overflow-scrolling: touch;
}
.timeline-track::-webkit-scrollbar { height: 6px; }
.timeline-track::-webkit-scrollbar-track { background: #0d151d; }
.timeline-track::-webkit-scrollbar-thumb { background: #2c3d4c; border-radius: 3px; }
.timeline-track::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 17px;
  height: 2px;
  background: linear-gradient(90deg, #2a3a48 0%, #3d5568 50%, #2a3a48 100%);
}
.timeline-stop {
  position: relative;
  flex: 0 0 auto;
  width: 132px;
  padding: 0 8px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.timeline-timecode {
  position: relative;
  order: 1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffb083;
  padding: 1px 5px;
  background: #1a2632;
  border: 1px solid #35485a;
  border-radius: 2px;
  transform: translateY(-24px);
  margin-bottom: -24px;
  white-space: nowrap;
}
.timeline-stop::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -14px;
  width: 2px;
  height: 14px;
  background: #3d5568;
}
.timeline-stop::after {
  content: "";
  position: absolute;
  left: 7px;
  top: -17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b2c;
  box-shadow: 0 0 8px 2px rgba(255, 107, 44, 0.55);
}
.timeline-label {
  order: 2;
  font-size: 12px;
  font-weight: 600;
  color: #c2cfda;
  line-height: 1.35;
  padding-top: 6px;
  border-top: 1px solid #22303c;
  width: 100%;
}
.episodes-crate {
  margin-bottom: 16px;
}
.episodes-heading {
  margin-bottom: 9px;
  padding-left: 9px;
  border-left: 3px solid #ff6b2c;
  line-height: 1.3;
}
.episode-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 7px;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 9px;
  background: #121c26;
  border: 1px solid #22303c;
  border-left: 3px solid #2f4150;
  border-radius: 2px;
  min-width: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.episode-card:hover {
  border-left-color: #4d6a80;
  background: #15202b;
}
.episode-card.is-current {
  border-color: #ff6b2c;
  border-left-color: #ff6b2c;
  background: linear-gradient(180deg, #24160f 0%, #17202a 100%);
  box-shadow: 0 0 0 1px rgba(255, 107, 44, 0.28), 0 2px 14px rgba(255, 107, 44, 0.14);
}
.episode-number {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #7e93a5;
}
.is-current .episode-number { color: #ff9a5e; }
.episode-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #e6edf3;
  line-height: 1.3;
}
.is-current .episode-title { color: #ffb083; }
.episode-summary {
  font-size: 11px;
  line-height: 1.5;
  color: #93a6b6;
  overflow-wrap: anywhere;
}
.episode-duration {
  margin-top: 2px;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #86a0b4;
  padding: 1px 6px;
  background: #1a2632;
  border: 1px solid #2b3b49;
  border-radius: 2px;
}
.is-current .episode-duration {
  color: #ffc9a6;
  background: #2a1a12;
  border-color: #6d3a1c;
}
.comments-board {
  margin-bottom: 16px;
  padding: 10px 12px 12px;
  background: linear-gradient(180deg, #101a24 0%, #0c141c 100%);
  border: 1px solid #1d2a37;
  border-radius: 3px;
}
.comments-heading {
  margin-bottom: 10px;
  padding-left: 9px;
  border-left: 3px solid #ff6b2c;
  line-height: 1.3;
}
.comments-waterfall {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px 12px;
  align-items: start;
}
.comments-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.comment-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 7px 9px 7px 11px;
  background: #131e28;
  border: 1px solid #22303c;
  border-left: 2px solid #ff6b2c;
  border-radius: 2px;
  min-width: 0;
}
.comment-nickname {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffb083;
}
.comment-text {
  font-size: 12px;
  line-height: 1.55;
  color: #b3c2cf;
  overflow-wrap: anywhere;
}
.recommend-rail {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 8px;
  margin-bottom: 12px;
  padding: 9px 10px;
  background: linear-gradient(180deg, #101a24 0%, #0c141c 100%);
  border: 1px solid #1d2a37;
  border-radius: 3px;
  align-items: stretch;
}
.recommend-heading {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
  color: #9fb2c2;
  padding: 4px 0;
  border-right: 1px solid #22303c;
  text-align: center;
  line-height: 1.2;
  max-height: 420px;
  overflow: hidden;
}
.recommend-track {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: #2c3d4c #0d151d;
  -webkit-overflow-scrolling: touch;
}
.recommend-track::-webkit-scrollbar { height: 6px; }
.recommend-track::-webkit-scrollbar-track { background: #0d151d; }
.recommend-track::-webkit-scrollbar-thumb { background: #2c3d4c; border-radius: 3px; }
.recommend-item {
  flex: 0 0 auto;
  width: 118px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 5px;
  background: #131e28;
  border: 1px solid #22303c;
  border-radius: 2px;
  color: #d3dee7;
  text-decoration: none;
  min-width: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.recommend-item:hover {
  border-color: #ff6b2c;
  background: #17222d;
  text-decoration: none;
}
[data-runtime="recommendation"] img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  background: #0a1017;
  border-radius: 1px;
}
.recommend-name {
  font-size: 11px;
  font-weight: 800;
  color: #e6edf3;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}
.recommend-blurb {
  font-size: 10px;
  line-height: 1.45;
  color: #8fa3b5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}
.site-footer {
  margin-top: 4px;
  padding: 12px 16px 20px;
  background: linear-gradient(180deg, #0d151d 0%, #080d13 100%);
  border-top: 1px solid #1d2a37;
  font-size: 11px;
  color: #7b8e9e;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-bottom: 8px;
}
.footer-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #b9c8d6;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.footer-nav a:hover {
  color: #ff9a5e;
  border-bottom-color: #ff6b2c;
  text-decoration: none;
}
.footer-disclaimer {
  max-width: 900px;
  font-size: 11px;
  line-height: 1.6;
  color: #6d8090;
  margin-bottom: 10px;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 10px;
  padding-top: 8px;
  border-top: 1px dashed #1f2c38;
}
.friend-links-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #93a7b8;
  margin-right: 2px;
}
.runtime-friend-link {
  font-size: 11px;
  color: #7fb4cc;
  text-decoration: none;
  white-space: nowrap;
}
.runtime-friend-link:hover {
  color: #ff9a5e;
  text-decoration: underline;
}
@media (min-width: 640px) {.episode-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.comments-waterfall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.synopsis-paragraphs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.details-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 20px; }
.details-row { grid-template-columns: 68px minmax(0, 1fr); }
.recommend-item { width: 132px; }
.movie-title { font-size: 27px; }}
@media (min-width: 860px) {.page-main { padding: 12px 22px 30px; }
.hero-truck { height: 142px; }
.overview-grid {
    grid-template-columns: minmax(0, 0.34fr) minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
  }
.poster-frame { max-width: none; }
.timeline-stop { width: 148px; }
.recommend-item { width: 142px; }
.comments-waterfall { gap: 8px 16px; }}
@media (min-width: 1024px) {.site-header { padding: 9px 24px; }
.movie-title { font-size: 30px; }
.overview-grid {
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    gap: 20px;
  }
.episode-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.recommend-item { width: 150px; }}
@media (min-width: 1280px) {.episode-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.overview-grid {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 22px;
  }
.recommend-item { width: 156px; }}
@media (max-width: 479px) {.site-header { padding: 8px 12px; }
.page-main { padding: 8px 12px 22px; }
.site-name { font-size: 15px; }
.movie-title { font-size: 21px; }
.hero-truck { height: 96px; }
.overview-grid { padding: 11px; gap: 12px; }
.player-controls { gap: 4px; padding: 5px 6px; }
.player-controls button, .player-controls select { padding: 3px 6px; font-size: 10px; }
.timeline-stop { width: 118px; }
.recommend-rail { grid-template-columns: 24px minmax(0, 1fr); padding: 8px; }
.recommend-item { width: 112px; }
.site-footer { padding: 12px 12px 18px; }}

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}
