/* ============================================================
   BINARY CRUSH — a tiny web arcade
   Night-first. The whole page runs on the game's day/night clock.
   ============================================================ */

:root {
  --font-px: "Silkscreen", "Courier New", monospace;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;
}

/* ---------- theme tokens ---------- */
:root[data-theme="night"] {
  --bg: #0b1026;
  --ink: #eef0ff;
  --ink-dim: #a9aed6;
  --line: rgba(174, 184, 255, 0.28);
  --accent: #ff4d8d;
  --accent-2: #45e6ff;
  --amber: #ffc65c;
  --btn-ink: #1b0812;
  --btn-shadow: #45e6ff;
  --title-shadow: rgba(69, 230, 255, 0.32);
  --glow: rgba(255, 77, 141, 0.45);
  --walk: #232748;
  --curb: #3a406e;
  --road: #14172e;
  --dash: rgba(255, 198, 92, 0.6);
  --lot-bg: rgba(20, 24, 56, 0.45);
  --gridline: rgba(160, 170, 255, 0.05);
  --shadow-ground: rgba(4, 6, 22, 0.5);
}
:root[data-theme="day"] {
  --bg: #a7dbff;
  --ink: #1b2145;
  --ink-dim: #4c5480;
  --line: rgba(27, 33, 69, 0.3);
  --accent: #f02c6e;
  --accent-2: #0b87ab;
  --amber: #f08c1d;
  --btn-ink: #1b0812;
  --btn-shadow: #1b2145;
  --title-shadow: rgba(240, 44, 110, 0.22);
  --glow: rgba(240, 44, 110, 0.22);
  --walk: #dfe5f4;
  --curb: #b7c0dc;
  --road: #aeb7d2;
  --dash: rgba(255, 255, 255, 0.85);
  --lot-bg: rgba(255, 255, 255, 0.4);
  --gridline: rgba(27, 33, 69, 0.06);
  --shadow-ground: rgba(27, 33, 69, 0.28);
}

/* ---------- base ---------- */
* { box-sizing: border-box; }

*,
*::before,
*::after {
  transition: color 0.5s ease, background-color 0.8s ease,
    border-color 0.8s ease, fill 0.6s ease, box-shadow 0.5s ease;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-mono);
  color: var(--ink);
  background-color: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
}

img { display: block; }
figure { margin: 0; }

::selection { background: var(--accent); color: #14061c; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ============================================================
   SKY — two stacked skies crossfade; stars vs clouds; moon vs sun
   ============================================================ */
.sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateZ(0);
}

.sky__layer {
  position: absolute;
  inset: 0;
  transition: opacity 1.1s ease;
}
.sky__night {
  background:
    radial-gradient(120% 55% at 50% 108%, rgba(255, 77, 141, 0.18), transparent 60%),
    linear-gradient(180deg, #05071a 0%, #0b1026 42%, #1b1440 76%, #331a4e 100%);
}
.sky__day {
  background:
    radial-gradient(120% 55% at 50% 110%, rgba(255, 170, 80, 0.35), transparent 62%),
    linear-gradient(180deg, #6fbdf5 0%, #a7dbff 46%, #e6f5ff 78%, #ffe7c2 100%);
}
[data-theme="night"] .sky__day { opacity: 0; }
[data-theme="day"] .sky__night { opacity: 0; }

/* stars (night only) */
.stars {
  position: absolute;
  inset: 0;
  transition: opacity 1.1s ease;
}
.stars--a {
  background-image:
    radial-gradient(1.5px 1.5px at 8% 12%, #fff, transparent),
    radial-gradient(1px 1px at 21% 32%, #cfe6ff, transparent),
    radial-gradient(2px 2px at 33% 8%, #ffe9f3, transparent),
    radial-gradient(1px 1px at 44% 22%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 58% 6%, #cfe6ff, transparent),
    radial-gradient(1px 1px at 66% 30%, #fff, transparent),
    radial-gradient(2px 2px at 78% 14%, #ffe9f3, transparent),
    radial-gradient(1px 1px at 90% 26%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 96% 9%, #cfe6ff, transparent),
    radial-gradient(1px 1px at 14% 48%, #fff, transparent),
    radial-gradient(1px 1px at 71% 44%, #cfe6ff, transparent);
  animation: twinkle 3.6s ease-in-out infinite;
}
.stars--b {
  background-image:
    radial-gradient(1px 1px at 5% 26%, #fff, transparent),
    radial-gradient(2px 2px at 17% 16%, #cfe6ff, transparent),
    radial-gradient(1px 1px at 27% 42%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 39% 13%, #ffe9f3, transparent),
    radial-gradient(1px 1px at 52% 34%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 62% 18%, #cfe6ff, transparent),
    radial-gradient(1px 1px at 74% 5%, #fff, transparent),
    radial-gradient(1px 1px at 84% 38%, #ffe9f3, transparent),
    radial-gradient(1.5px 1.5px at 93% 20%, #fff, transparent);
  animation: twinkle 5.2s ease-in-out 1.4s infinite;
}
@keyframes twinkle { 50% { opacity: 0.45; } }
[data-theme="day"] .stars { opacity: 0; animation: none; }

/* clouds (day only) */
.clouds { position: absolute; inset: 0; transition: opacity 1.1s ease; }
[data-theme="night"] .clouds { opacity: 0; }
.clouds i {
  position: absolute;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  filter: blur(16px);
}
.clouds i:nth-child(1) { width: 220px; height: 52px; top: 16%; animation: drift 110s linear -20s infinite; }
.clouds i:nth-child(2) { width: 150px; height: 40px; top: 30%; animation: drift 140s linear -75s infinite; }
.clouds i:nth-child(3) { width: 280px; height: 62px; top: 7%;  animation: drift 95s  linear -50s infinite; }
@keyframes drift {
  from { transform: translateX(-25vw); }
  to   { transform: translateX(115vw); }
}

/* sun & moon */
.orb {
  position: absolute;
  top: 12%;
  right: 10%;
  border-radius: 50%;
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.orb--moon {
  width: 62px; height: 62px;
  background:
    radial-gradient(10px 10px at 66% 38%, rgba(140, 145, 190, 0.5), transparent 60%),
    radial-gradient(7px 7px at 38% 62%, rgba(140, 145, 190, 0.45), transparent 60%),
    radial-gradient(circle at 34% 30%, #f6f4ff, #cdd0ec 58%, #a7abd6);
  box-shadow: 0 0 44px rgba(214, 220, 255, 0.4);
}
.orb--sun {
  width: 72px; height: 72px;
  background: radial-gradient(circle at 38% 34%, #fff8cf, #ffd75e 55%, #ffb43a);
  box-shadow: 0 0 80px rgba(255, 190, 80, 0.65);
}
[data-theme="night"] .orb--sun,
[data-theme="day"] .orb--moon { opacity: 0; transform: translateY(46px) scale(0.82); }

/* faint isometric grid near the ground */
.grid-tex {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(60deg, var(--gridline) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(-60deg, var(--gridline) 0 1px, transparent 1px 48px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.9) 75%);
  mask-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.9) 75%);
}

/* ============================================================
   HEADER
   ============================================================ */
.top {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
}
.brand__heart { width: 1rem; fill: var(--accent); animation: beat 1.6s ease-in-out infinite; }
.brand__name {
  font-family: var(--font-px);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

/* day/night switch */
.mode {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 7px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.mode svg { width: 17px; height: 17px; }
.mode__sun { fill: var(--amber); }
.mode__moon { fill: var(--ink-dim); }
[data-theme="night"] .mode__moon { fill: #dfe3ff; }
[data-theme="day"] .mode__sun { fill: #f08c1d; }
.mode__knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 0.35s cubic-bezier(0.3, 1.4, 0.5, 1), background-color 0.8s ease;
}
[data-theme="night"] .mode__knob { transform: translateX(23px); }
.mode:hover .mode__knob { background: var(--accent-2); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(4rem, 10vh, 7.5rem) 1.2rem clamp(3rem, 7vh, 5rem);
}

/* drifting 1s and 0s */
.bits { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.bits span {
  position: absolute;
  top: 100%;
  font-family: var(--font-px);
  font-size: 0.85rem;
  color: var(--accent-2);
  opacity: 0.35;
  animation: bitfloat linear infinite;
}
.bits span:nth-child(odd) { color: var(--accent); }
.bits span:nth-child(1)  { left: 4%;  animation-duration: 19s; animation-delay: -3s; }
.bits span:nth-child(2)  { left: 12%; animation-duration: 24s; animation-delay: -14s; }
.bits span:nth-child(3)  { left: 22%; animation-duration: 17s; animation-delay: -8s; }
.bits span:nth-child(4)  { left: 31%; animation-duration: 26s; animation-delay: -20s; }
.bits span:nth-child(5)  { left: 40%; animation-duration: 21s; animation-delay: -5s; }
.bits span:nth-child(6)  { left: 49%; animation-duration: 16s; animation-delay: -11s; }
.bits span:nth-child(7)  { left: 58%; animation-duration: 23s; animation-delay: -17s; }
.bits span:nth-child(8)  { left: 66%; animation-duration: 18s; animation-delay: -2s; }
.bits span:nth-child(9)  { left: 74%; animation-duration: 27s; animation-delay: -22s; }
.bits span:nth-child(10) { left: 83%; animation-duration: 20s; animation-delay: -9s; }
.bits span:nth-child(11) { left: 91%; animation-duration: 15s; animation-delay: -6s; }
.bits span:nth-child(12) { left: 96%; animation-duration: 25s; animation-delay: -16s; }
@keyframes bitfloat { to { transform: translateY(-125vh); } }

.hero__eyebrow {
  margin: 0 0 1.4rem;
  font-family: var(--font-px);
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.hero__title {
  margin: 0;
  font-family: var(--font-px);
  font-weight: 700;
  font-size: clamp(2.9rem, 10.5vw, 7rem);
  line-height: 0.98;
  text-transform: uppercase;
}
.hero__word { display: block; }
.hero__word > span,
.hero__word > .heartbtn {
  display: inline-block;
  animation: pop 0.6s cubic-bezier(0.2, 1.45, 0.35, 1) both;
  animation-delay: calc(var(--i) * 60ms);
}
.hero__word--crush {
  color: var(--accent);
  text-shadow: 0 0 26px var(--glow), 0.045em 0.045em 0 var(--title-shadow);
}
@keyframes pop {
  from { transform: translateY(0.9em) scale(0.6); opacity: 0; }
}

.heartbtn {
  background: none;
  border: 0;
  padding: 0;
  margin-left: 0.18em;
  cursor: pointer;
  position: relative;
  vertical-align: 0.08em;
  line-height: 0;
}
.heartbtn > svg {
  width: 0.9em;
  fill: var(--accent);
  filter: drop-shadow(0 0 14px var(--glow));
  animation: beat 1.5s ease-in-out infinite;
  transform-origin: 50% 55%;
}
.heartbtn:active > svg { transform: scale(0.85); }
@keyframes beat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.22); }
  28% { transform: scale(1); }
  42% { transform: scale(1.14); }
  56% { transform: scale(1); }
}
.spark {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 0.22em;
  line-height: 1;
  color: var(--accent);
  pointer-events: none;
  animation: burst 0.75s ease-out forwards;
}
.spark:nth-child(even) { color: var(--accent-2); }
@keyframes burst {
  from { transform: translate(-50%, -50%) rotate(var(--a)) translateY(0) scale(1); opacity: 1; }
  to   { transform: translate(-50%, -50%) rotate(var(--a)) translateY(-2.6em) scale(0.35); opacity: 0; }
}

.hero__sub {
  max-width: 46ch;
  margin: 1.8rem auto 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--ink-dim);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-block: 2px solid var(--line);
  padding: 0.62rem 0;
  font-family: var(--font-px);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__group {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  padding-right: 2.4rem;
}
.ticker__group b { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   NOW PLAYING — the Mogul Row cabinet
   ============================================================ */
.cab {
  position: relative;
  z-index: 1;
  padding-top: clamp(3.5rem, 8vh, 6rem);
}
.cab__grid {
  position: relative;
  z-index: 2;
  width: min(1140px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
}

.eyebrow {
  margin: 0 0 1.1rem;
  font-family: var(--font-px);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.cab__info { padding-bottom: clamp(1.5rem, 4vh, 3.5rem); }

.cab__title {
  margin: 0 0 0.9rem;
  font-family: var(--font-px);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0.06em 0.06em 0 var(--title-shadow);
}

.cab__tag {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  font-weight: 700;
}
.cab__tag em { font-style: normal; font-weight: 400; color: var(--ink-dim); }

.cab__desc {
  margin: 0 0 1.4rem;
  max-width: 54ch;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--ink-dim);
}

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0 0 1.5rem;
}
.chips li {
  border: 1px solid var(--line);
  padding: 0.32rem 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.chips li::before { content: "▸ "; color: var(--accent); }

.rivals {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.9rem;
}
.rivals__faces { display: flex; flex-shrink: 0; }
.rivals__faces img {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--line);
  transition: transform 0.25s ease, border-color 0.8s ease;
}
.rivals__faces img + img { margin-left: -10px; }
.rivals__faces img:hover { transform: translateY(-5px) rotate(-4deg); border-color: var(--accent); }
.rivals p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--ink-dim);
}

.cab__cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem;
}
.btn {
  display: inline-block;
  font-family: var(--font-px);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--btn-ink);
  background: var(--accent);
  border: 3px solid var(--btn-ink);
  padding: 0.9rem 1.5rem;
  box-shadow: 6px 6px 0 var(--btn-shadow);
  transition: transform 0.13s ease, box-shadow 0.13s ease, background-color 0.8s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--btn-shadow); }
.btn:active { transform: translate(5px, 5px); box-shadow: 0 0 0 var(--btn-shadow); }
.cab__meta { font-size: 0.76rem; color: var(--ink-dim); }

/* --- the diorama --- */
.cab__scene {
  min-width: 0;
  /* bleed to the exact right edge of the viewport: the city continues off-frame */
  margin-right: calc((100vw - min(1140px, 92vw)) / -2);
}
.skyline {
  --u: 0.44px;
  display: flex;
  align-items: flex-end;
  justify-content: safe center;
  margin-bottom: -12px; /* sprites carry ~10px of soft shadow; sit them on the curb */
}
.bld {
  position: relative;
  height: calc(var(--h) * var(--u));
  margin-inline: -14px;
  transition: transform 0.3s cubic-bezier(0.3, 1.5, 0.5, 1);
}
.bld:hover { transform: translateY(-8px); }
.bld img { height: 100%; width: auto; }
.bld::after {
  content: "";
  position: absolute;
  left: 10%; right: 10%;
  bottom: -8px;
  height: 16px;
  background: radial-gradient(50% 50% at 50% 50%, var(--shadow-ground), transparent 72%);
  z-index: -1;
}
.b-night { position: absolute; inset: 0; }
.bld .b-night,
.car .b-night { transition: opacity 1.1s ease; }
.bld .b-day,
.car .b-day { transition: opacity 1.1s ease; }
[data-theme="night"] .b-day { opacity: 0; }
[data-theme="day"] .b-night { opacity: 0; }
[data-theme="night"] .bld img.b-night { filter: drop-shadow(0 4px 22px rgba(255, 120, 190, 0.16)); }

/* --- the street (full-bleed) --- */
.street {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.street__walk {
  height: 22px;
  background: var(--walk);
  border-top: 2px solid var(--curb);
}
.street__road {
  position: relative;
  height: 64px;
  background: var(--road);
  overflow: hidden;
}
.street__road::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 4px;
  margin-top: -2px;
  background: repeating-linear-gradient(90deg, var(--dash) 0 26px, transparent 26px 56px);
  opacity: 0.75;
}
.car {
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 62px;
  animation: drive 36s linear infinite;
}
/* the sprite is drawn on the game's isometric axis (nose up-right ~24°);
   level it so it drives flat along the road */
.car img { width: 100%; height: auto; transform: rotate(24deg); }
.car .b-night { position: absolute; inset: 0; }
@keyframes drive {
  from { transform: translateX(-18vw); }
  to   { transform: translateX(114vw); }
}

/* ============================================================
   FUTURE CABINETS
   ============================================================ */
.lots {
  position: relative;
  z-index: 1;
  width: min(1140px, 92vw);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vh, 6rem) 0 1rem;
}
.lots__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.lot {
  border: 2px dashed var(--line);
  background: var(--lot-bg);
  padding: 1.6rem 1.7rem 1.8rem;
  transition: transform 0.25s ease, border-color 0.4s ease, background-color 0.8s ease;
}
.lot:hover { transform: rotate(-0.6deg) translateY(-3px); border-color: var(--accent); }
.lot:last-child:hover { transform: rotate(0.6deg) translateY(-3px); }
.lot h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-px);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lot__status {
  display: inline-block;
  margin: 0 0 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  padding: 0.28rem 0.55rem;
}
.lot__status--busy {
  color: var(--btn-ink);
  background: var(--amber);
  border-color: var(--btn-ink);
}
.lot__copy {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--ink-dim);
}
.cursor {
  color: var(--accent);
  animation: blink 1.1s steps(1) infinite;
  margin-left: 2px;
}
@keyframes blink { 50% { opacity: 0; } }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.2rem 3.6rem;
  font-size: 0.78rem;
  line-height: 2;
  color: var(--ink-dim);
}
.foot p { margin: 0; }
.foot__heart {
  width: 0.75rem;
  fill: var(--accent);
  vertical-align: -1px;
  animation: beat 1.6s ease-in-out infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1150px) and (min-width: 901px) {
  .skyline { --u: 0.36px; }
}
@media (max-width: 900px) {
  .cab__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cab__info { padding-bottom: 0; }
  .cab__scene {
    margin-right: 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--line) transparent;
    /* the scroll container clips the skyline's curb overlap — overlap the
       container instead, and give the clipped shadows room inside it */
    margin-bottom: -14px;
  }
  .skyline { margin-bottom: 0; padding-bottom: 10px; }
  .cab__scene::-webkit-scrollbar { height: 6px; }
  .cab__scene::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
  .cab__scene::-webkit-scrollbar-track { background: transparent; }
  .lots__grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .orb { top: 8%; right: 7%; }
  .orb--moon { width: 46px; height: 46px; }
  .orb--sun { width: 54px; height: 54px; }
  .skyline { --u: 0.36px; }
  .bld { margin-inline: -10px; }
  .ticker { font-size: 0.66rem; }
  .car { width: 46px; }
  .street__road { height: 52px; }
  .hero__sub { font-size: 0.88rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .ticker__track { animation: none; }
  .car { display: none; }
}
