/* ============================================================
   N1G4 FUND — machine ledger
   Dark forensic terminal: phosphor green on true black, mono
   data, condensed display type, everything on the record.
   ============================================================ */

:root {
  --ink:       #07080c;
  --ink-2:     #0b0d12;
  --ink-3:     #10141b;
  --hair:      #1a1e26;
  --hair-lit:  #2b323c;
  --bone:      #e8ecf2;
  --dim:       #7b828e;
  --dimmer:    #4a515c;

  --acid:      #4ade50;
  --acid-soft: rgba(74, 222, 80, 0.14);
  --acid-line: rgba(74, 222, 80, 0.32);
  --red:       #ff5b4a;
  --red-soft:  rgba(255, 91, 74, 0.13);
  --amber:     #f0a92a;

  --sans: 'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --gut: clamp(1rem, 3.2vw, 2.75rem);
  --nav-h: 60px;
  --tape-h: 34px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

/* Author-level `display` on a class beats the user-agent rule for [hidden],
   so every toggle in this file needs this to actually hide anything. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 24px); }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  padding-bottom: var(--tape-h);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Atmosphere ------------------------------------------------ */

.grain {
  position: fixed; inset: 0; z-index: 200; pointer-events: none;
  opacity: 0.032; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scanlines {
  position: fixed; inset: 0; z-index: 199; pointer-events: none; opacity: 0.4;
  background: repeating-linear-gradient(
    to bottom, transparent 0 3px, rgba(0, 0, 0, 0.28) 3px 4px
  );
}

/* Type primitives ------------------------------------------- */

.label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* Solana mark used as the SOL unit. Sized in em so it tracks whatever text
   it sits next to, and always grey so it reads as a unit, not as a value —
   the number keeps the green/red. */
.sol {
  width: 0.66em; height: 0.66em;
  display: inline-block; vertical-align: baseline;
  fill: var(--dimmer);
  margin-left: 0.12em;
  flex-shrink: 0;
}

.up   { color: var(--acid); }
.down { color: var(--red); }
.flat { color: var(--dim); }

a { color: inherit; text-decoration: none; }

/* Nav -------------------------------------------------------- */

.nav {
  position: sticky; top: 0; z-index: 150;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 var(--gut);
  background: rgba(7, 8, 12, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--hair);
}

.brand { display: flex; align-items: center; gap: 0.6rem; }

.brand-mark {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  width: 18px; height: 18px;
}
.brand-mark i {
  background: var(--acid); border-radius: 1px;
  animation: blink 2.6s var(--ease) infinite;
}
.brand-mark i:nth-child(2) { animation-delay: 0.2s; opacity: 0.55; }
.brand-mark i:nth-child(3) { animation-delay: 0.6s; opacity: 0.35; }
.brand-mark i:nth-child(4) { animation-delay: 0.4s; opacity: 0.75; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.brand-name {
  font-family: var(--mono); font-weight: 700; font-size: 13px;
  letter-spacing: 0.16em;
}

.nav-links { display: flex; gap: 1.4rem; margin-left: 1rem; }
.nav-links a {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; color: var(--dim);
  padding: 4px 0; border-bottom: 1px solid transparent;
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.nav-links a:hover { color: var(--bone); border-bottom-color: var(--acid); }

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 0.75rem; }

/* Social icon: grey by default so it sits behind the data, not in front of it */
.icon-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border: 1px solid var(--hair);
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.icon-link svg { width: 13px; height: 13px; fill: var(--dim); transition: fill 0.18s var(--ease); }
.icon-link:hover { border-color: var(--hair-lit); background: var(--ink-2); }
.icon-link:hover svg { fill: var(--bone); }

.wallet-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 5px 10px; border: 1px solid var(--hair);
  font-family: var(--mono); font-size: 11px; color: var(--dim);
  transition: border-color 0.18s var(--ease), color 0.18s var(--ease);
}
.wallet-chip:hover { border-color: var(--hair-lit); color: var(--bone); }
.wallet-chip .dot { width: 5px; height: 5px; background: var(--acid); border-radius: 50%; }

.live {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--dim);
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--dimmer);
}
.live[data-live-state='live'] { color: var(--acid); }
.live[data-live-state='live'] .live-dot {
  background: var(--acid);
  box-shadow: 0 0 0 0 var(--acid-line);
  animation: pulse 2s var(--ease) infinite;
}
.live[data-live-state='stale'] { color: var(--amber); }
.live[data-live-state='stale'] .live-dot { background: var(--amber); }
.live-dot.warn { background: var(--amber); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 80, 0.45); }
  70%  { box-shadow: 0 0 0 7px rgba(74, 222, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 80, 0); }
}

/* Hero ------------------------------------------------------- */

.hero { position: relative; border-bottom: 1px solid var(--hair); overflow: hidden; }

.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.5;
  mask-image: linear-gradient(to right, transparent, #000 42%, #000 100%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 4vw, 4rem); align-items: center;
  padding: clamp(2.75rem, 7vw, 5.5rem) var(--gut) clamp(2.25rem, 5vw, 4rem);
  max-width: 1560px; margin: 0 auto;
}

.eyebrow {
  margin: 0 0 1.1rem; font-family: var(--mono); font-size: 10px;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--acid);
}
.eyebrow::before { content: '// '; color: var(--dimmer); }

h1 { margin: 0; }
.h1-small {
  display: block; font-size: clamp(1.05rem, 2vw, 1.6rem);
  font-weight: 500; color: var(--dim); letter-spacing: -0.015em;
}
.h1-big {
  display: block;
  font-size: clamp(3.1rem, 10.5vw, 8.5rem);
  font-weight: 800; line-height: 0.86; letter-spacing: -0.048em;
  color: var(--bone);
  text-wrap: balance;
}

.lede {
  margin: 1.5rem 0 0; max-width: 46ch;
  color: var(--dim); font-size: clamp(0.94rem, 1.3vw, 1.06rem);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 20px; border: 1px solid transparent;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase; cursor: pointer;
  transition: background 0.18s var(--ease), color 0.18s var(--ease),
              border-color 0.18s var(--ease), transform 0.12s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--acid); color: #041006; border-color: var(--acid); }
.btn-primary:hover { background: #64f472; box-shadow: 0 0 26px rgba(74, 222, 80, 0.28); }
.btn-ghost { background: transparent; color: var(--bone); border-color: var(--hair-lit); }
.btn-ghost:hover { border-color: var(--acid); color: var(--acid); }
.btn-wide { width: 100%; margin-top: 1rem; }

/* Latest-move card ------------------------------------------ */

.latest {
  border: 1px solid var(--hair); background: linear-gradient(160deg, var(--ink-2), var(--ink));
  padding: 1.1rem 1.2rem 1.25rem; position: relative;
}
.latest::after {
  content: ''; position: absolute; top: -1px; right: -1px;
  width: 26px; height: 1px; background: var(--acid);
}
.latest-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }

.latest-token { display: flex; align-items: center; gap: 0.85rem; }
.latest-token img, .latest-token .ph {
  width: 46px; height: 46px; object-fit: cover; border: 1px solid var(--hair);
  background: var(--ink-3); flex-shrink: 0;
}
.latest-name { font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; }
.latest-sym { font-family: var(--mono); font-size: 11px; color: var(--dim); letter-spacing: 0.1em; }

.latest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem; margin-top: 1.15rem; padding-top: 1rem;
  border-top: 1px solid var(--hair);
}
.latest-grid div { display: flex; flex-direction: column; gap: 3px; }
.latest-grid strong { font-family: var(--mono); font-size: 1rem; font-variant-numeric: tabular-nums; }

.side-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 8px; font-family: var(--mono); font-size: 10px;
  font-weight: 600; letter-spacing: 0.12em;
}
.side-tag.buy  { background: var(--acid-soft); color: var(--acid); }
.side-tag.sell { background: var(--red-soft);  color: var(--red); }

/* Stat band -------------------------------------------------- */

.stats {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--hair);
  max-width: 1560px; margin: 0 auto;
}
.stat {
  display: flex; flex-direction: column; gap: 0.35rem;
  padding: 1.4rem var(--gut); border-right: 1px solid var(--hair);
  min-width: 0;
}
.stat:last-child { border-right: 0; }
.stat-value {
  font-size: clamp(1.35rem, 2.6vw, 2.1rem); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.1;
  /* the SOL mark must never wrap onto its own line away from the figure */
  white-space: nowrap;
}
.stat-hero .stat-value { font-size: clamp(1.7rem, 3.4vw, 2.7rem); }
.stat-sub { font-family: var(--mono); font-size: 10px; color: var(--dimmer); letter-spacing: 0.08em; }
.stat-best .stat-value { display: flex; align-items: center; gap: 0.5rem; }
.stat-best img { width: 26px; height: 26px; object-fit: cover; border: 1px solid var(--hair); }

/* Sections --------------------------------------------------- */

.section { padding: clamp(2rem, 4.5vw, 3.5rem) var(--gut); max-width: 1560px; margin: 0 auto; width: 100%; }

.section-head {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.section-title {
  margin: 0; font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 800; letter-spacing: -0.035em;
}
.section-title::after {
  content: ''; display: block; width: 34px; height: 2px;
  background: var(--acid); margin-top: 0.5rem;
}

.filters { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; margin-left: auto; }
.filters-spacer { flex: 1; min-width: 0.5rem; }

.chip {
  padding: 6px 12px; background: transparent; color: var(--dim);
  border: 1px solid var(--hair); cursor: pointer;
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  transition: all 0.16s var(--ease);
}
.chip:hover { color: var(--bone); border-color: var(--hair-lit); }
.chip.is-active { color: var(--acid); border-color: var(--acid); background: var(--acid-soft); }

/* Position grid ---------------------------------------------- */

.grid {
  display: grid; gap: 1px; background: var(--hair);
  border: 1px solid var(--hair);
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
}

.card {
  position: relative; background: var(--ink-2);
  padding: 1.05rem 1.1rem 1.15rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  transition: background 0.2s var(--ease);
  overflow: hidden;
}
.card.anim { animation: fadeUp 0.5s var(--ease) both; }
.card:hover { background: var(--ink-3); }
/* corner ticks on hover — technical, not decorative-for-its-own-sake */
.card::before, .card::after {
  content: ''; position: absolute; width: 9px; height: 9px;
  border-color: var(--acid); opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.card::before { top: 7px; left: 7px; border-top: 1px solid; border-left: 1px solid; }
.card::after { bottom: 7px; right: 7px; border-bottom: 1px solid; border-right: 1px solid; }
.card:hover::before, .card:hover::after { opacity: 1; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.card-top { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.card-img, .card-top .ph {
  width: 40px; height: 40px; object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--hair); background: var(--ink-3);
}
.ph {
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--dimmer);
}
.card-id { min-width: 0; }
.card-sym {
  font-weight: 700; font-size: 0.98rem; letter-spacing: -0.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card-name {
  font-size: 11px; color: var(--dim);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card-state {
  margin-left: auto; flex-shrink: 0;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em;
  padding: 3px 6px; border: 1px solid var(--hair); color: var(--dim);
}
.card-state.open { color: var(--acid); border-color: var(--acid-line); }

.card-pnl { display: flex; align-items: baseline; gap: 0.55rem; }
.card-pnl b {
  font-family: var(--mono); font-size: 1.5rem; font-weight: 600;
  font-variant-numeric: tabular-nums; letter-spacing: -0.03em;
}
.card-mult { font-family: var(--mono); font-size: 11px; color: var(--dim); }

.spark { width: 100%; height: 30px; display: block; }

.card-rows { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.card-rows div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.card-rows span { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; color: var(--dimmer); }
.card-rows b { font-family: var(--mono); font-size: 12px; font-weight: 500; font-variant-numeric: tabular-nums; }

/* Table view ------------------------------------------------- */

.table-wrap { border: 1px solid var(--hair); overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; min-width: 720px; }
.table th {
  text-align: left; padding: 0.7rem 1rem; background: var(--ink-2);
  font-family: var(--mono); font-size: 9px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--dim); border-bottom: 1px solid var(--hair);
  position: sticky; top: 0;
}
.table td {
  padding: 0.7rem 1rem; border-bottom: 1px solid var(--hair);
  font-family: var(--mono); font-size: 12px; font-variant-numeric: tabular-nums;
}
.table tbody tr:hover { background: var(--ink-2); }
.table .ta-r { text-align: right; }
.t-token { display: flex; align-items: center; gap: 0.55rem; font-family: var(--sans); }
.t-token img, .t-token .ph { width: 24px; height: 24px; object-fit: cover; border: 1px solid var(--hair); }
.t-token b { font-size: 13px; }

/* Feed ------------------------------------------------------- */

.split {
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  max-width: 1560px; margin: 0 auto; align-items: start;
}
.split > .section { max-width: none; padding-inline: 0; }
.split > .section:first-child { padding-right: clamp(1rem, 2.5vw, 2.5rem); }
.split { padding-inline: var(--gut); }

.feed { list-style: none; margin: 0; padding: 0; border: 1px solid var(--hair); }
.feed-row {
  display: grid; grid-template-columns: auto auto 1fr auto auto;
  align-items: center; gap: 0.8rem;
  padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--hair);
  transition: background 0.16s var(--ease);
}
.feed-row.anim { animation: fadeUp 0.4s var(--ease) both; }
.feed-row:last-child { border-bottom: 0; }
.feed-row:hover { background: var(--ink-2); }
.feed-time { font-family: var(--mono); font-size: 10px; color: var(--dimmer); white-space: nowrap; }
.feed-token { display: flex; align-items: center; gap: 0.5rem; min-width: 0; }
.feed-token img, .feed-token .ph { width: 26px; height: 26px; object-fit: cover; border: 1px solid var(--hair); }
.feed-sym { font-weight: 600; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed-venue { font-family: var(--mono); font-size: 9px; color: var(--dimmer); letter-spacing: 0.1em; }
.feed-amt { font-family: var(--mono); font-size: 13px; font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; }
.feed-link { font-family: var(--mono); font-size: 11px; color: var(--dimmer); transition: color 0.16s var(--ease); }
.feed-link:hover { color: var(--acid); }

/* Ranks ------------------------------------------------------ */

.ranks { list-style: none; margin: 0; padding: 0; border: 1px solid var(--hair); }
.rank {
  display: grid; grid-template-columns: 26px auto 1fr auto;
  align-items: center; gap: 0.7rem;
  padding: 0.65rem 0.9rem; border-bottom: 1px solid var(--hair);
}
.rank:last-child { border-bottom: 0; }
.rank-n { font-family: var(--mono); font-size: 11px; color: var(--dimmer); }
.rank img, .rank .ph { width: 26px; height: 26px; object-fit: cover; border: 1px solid var(--hair); }
.rank-sym { font-weight: 600; font-size: 13px; }
.rank-bar { position: relative; height: 4px; background: var(--ink-3); overflow: hidden; }
.rank-bar i { position: absolute; inset: 0 auto 0 0; background: var(--acid); }
.rank-bar i.neg { background: var(--red); }
.rank-val { font-family: var(--mono); font-size: 12px; font-variant-numeric: tabular-nums; }

/* Footer & tape ---------------------------------------------- */

.foot {
  border-top: 1px solid var(--hair); padding: 1.8rem var(--gut) 2.4rem;
  max-width: 1560px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.foot-line { display: flex; gap: 0.9rem; align-items: baseline; flex-wrap: wrap; font-size: 12px; color: var(--dim); }
.foot-line a { font-family: var(--mono); font-size: 11px; word-break: break-all; }
.foot-line a:hover { color: var(--acid); }
.foot-stamp { font-family: var(--mono); font-size: 10px; color: var(--dimmer); }

.tape {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 140;
  height: var(--tape-h); overflow: hidden;
  background: var(--ink-2); border-top: 1px solid var(--hair);
  display: flex; align-items: center;
}
.tape-track {
  display: flex; gap: 2.5rem; white-space: nowrap;
  padding-left: 100%;
  animation: marquee 48s linear infinite;
  font-family: var(--mono); font-size: 11px; color: var(--dim);
}
.tape:hover .tape-track { animation-play-state: paused; }
.tape-track b { font-variant-numeric: tabular-nums; }
@keyframes marquee { to { transform: translateX(-100%); } }

/* Utility states --------------------------------------------- */

.empty {
  padding: 3rem 1rem; text-align: center; color: var(--dim);
  border: 1px dashed var(--hair); font-size: 13px;
}

.card-skeleton, .feed-skeleton, .skeleton-block {
  background: linear-gradient(90deg, var(--ink-2) 25%, var(--ink-3) 50%, var(--ink-2) 75%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite;
}
.card-skeleton { min-height: 168px; }
.feed-skeleton { height: 44px; }
.skeleton-block { height: 132px; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* Permanent status strip: feed state on the left, live block height on the
   right. The block keeps ticking even on a snapshot page, so it always reads
   as a chain that is moving. */
.toast {
  position: fixed; bottom: calc(var(--tape-h) + 14px); left: 50%;
  transform: translateX(-50%); z-index: 160;
  display: flex; align-items: center; gap: 0.55rem;
  padding: 8px 15px; background: rgba(11, 13, 18, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--hair-lit); color: var(--dim);
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
}
.toast .toast-sep { color: var(--dimmer); }
.toast .toast-block { color: var(--dim); }
.toast .toast-block b { color: var(--bone); font-variant-numeric: tabular-nums; }

.toast[data-mode='online'] { border-color: var(--acid-line); color: var(--acid); }
.toast[data-mode='online'] .live-dot {
  background: var(--acid); animation: pulse 2s var(--ease) infinite;
}
.toast[data-mode='snapshot'] { border-color: var(--amber); color: var(--amber); }
.toast[data-mode='snapshot'] .live-dot { background: var(--amber); }

/* Responsive ------------------------------------------------- */

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-canvas { mask-image: linear-gradient(to bottom, transparent, #000 60%); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--hair); }
  .stat-hero { grid-column: 1 / -1; }
  .split { grid-template-columns: 1fr; }
  .split > .section:first-child { padding-right: 0; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; }
  .feed-row { grid-template-columns: auto 1fr auto; row-gap: 0.35rem; }
  .feed-time { grid-column: 1 / -1; }
  .feed-link { display: none; }
  .latest-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .tape-track { animation: none; padding-left: 1rem; }
}
