  :root {
    --bg:        #06070d;
    --bg-alt:    #090b12;
    --panel:     #0f1218;
    --panel-2:   #151922;
    --line:      #1e2430;
    --line-soft: #171c26;
    --fg:        #f2f5fa;
    --fg-mid:    #98a3b6;
    --fg-dim:    #616c80;
    --mars:      #ff5a30;
    --mars-2:    #ff8b62;
    --gold:      #ffb545;
    --good:      #29d98c;
    --warn:      #ffc24b;
    --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
    --wrap: 1140px;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0; background: var(--bg); color: var(--fg);
    font: 16px/1.6 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; }
  .wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

  /* ---------- starfield: three static layers, no JS, no images ---------- */
  .sky { position: fixed; inset: 0; z-index: -2; background: var(--bg); }
  .sky::before, .sky::after {
    content: ""; position: absolute; inset: -50%;
    background-repeat: repeat;
  }
  .sky::before {
    background-image:
      radial-gradient(1.4px 1.4px at 20% 30%, rgba(255,255,255,.55), transparent),
      radial-gradient(1.2px 1.2px at 70% 12%, rgba(255,255,255,.40), transparent),
      radial-gradient(1.6px 1.6px at 42% 76%, rgba(255,255,255,.30), transparent),
      radial-gradient(1.1px 1.1px at 88% 58%, rgba(255,255,255,.45), transparent),
      radial-gradient(1.3px 1.3px at 12% 88%, rgba(255,255,255,.28), transparent);
    background-size: 460px 460px;
    opacity: .6;
  }
  .sky::after {
    background-image:
      radial-gradient(1px 1px at 55% 40%, rgba(255,180,150,.5), transparent),
      radial-gradient(1px 1px at 15% 62%, rgba(190,215,255,.45), transparent);
    background-size: 300px 300px;
    opacity: .5;
  }
  .glow {
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background:
      radial-gradient(880px 520px at 82% -10%, rgba(255,90,48,.20), transparent 64%),
      radial-gradient(620px 420px at 4% 6%, rgba(70,110,255,.10), transparent 62%);
  }
  /* The Martian horizon, clipped to the hero by #top's overflow — unclipped it
     bleeds its rust glow down through every section below and muddies them. */
  #top { position: relative; overflow: hidden; }
  .planet {
    position: absolute; left: 50%; top: 452px; transform: translateX(-50%);
    width: 1400px; height: 1400px; border-radius: 50%; z-index: -1; pointer-events: none;
    background: radial-gradient(circle at 50% 0%, rgba(255,110,60,.30), rgba(140,44,20,.10) 38%, transparent 62%);
    border-top: 1px solid rgba(255,120,70,.28);
  }
  /* Atmospheric haze sitting on the horizon — the warmth that makes the Mars
     reference feel photographic rather than flat. */
  .haze {
    position: absolute; left: 0; right: 0; top: 300px; height: 340px; z-index: -1;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(255,110,55,.13) 55%, rgba(255,140,80,.07));
    filter: blur(30px);
  }

  /* ---------- nav ---------- */
  nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(6,7,13,.78); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-in { display: flex; align-items: center; gap: 20px; height: 62px; }
  .brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 18px; letter-spacing: -.3px; text-decoration: none; }
  .brand-mark { width: 26px; height: 26px; flex-shrink: 0; }
  .brand-name { white-space: nowrap; }
  .brand-name b { color: var(--mars); font-weight: 800; }
  .nav-links { display: flex; gap: 22px; margin-left: auto; font-size: 14px; }
  /* Wide-tracked uppercase micro-labels — the technical register MarsCoin uses
     for nav and stat captions. Reads as instrumentation rather than marketing. */
  .nav-links a {
    color: var(--fg-mid); text-decoration: none; transition: color .15s;
    font-size: 11.5px; letter-spacing: .13em; text-transform: uppercase; font-weight: 600;
  }
  .nav-links a:hover { color: var(--fg); }
  .pill {
    display: inline-flex; align-items: center; gap: 7px;
    border: 1px solid var(--line); background: var(--panel);
    border-radius: 999px; padding: 6px 13px; font-size: 12.5px; color: var(--fg-mid);
  }
  .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 8px var(--good); }
  .dot.idle { background: var(--fg-dim); box-shadow: none; }

  /* ---------- banner ---------- */
  .banner {
    background: rgba(255,194,75,.09); border-bottom: 1px solid rgba(255,194,75,.28);
    color: var(--warn); font-size: 13.5px; text-align: center; padding: 9px 16px;
  }
  .banner[hidden] { display: none; }

  /* ---------- hero ---------- */
  /* Keep the horizontal padding from .wrap — a `padding: x 0 y` shorthand here
     silently zeroes it and the copy runs off-screen on narrow viewports. */
  .hero { position: relative; padding: 74px 22px 66px; }
  .hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 52px; align-items: center; }
  h1 {
    font-size: clamp(38px, 5.6vw, 62px); line-height: 1.04; letter-spacing: -1.8px;
    font-weight: 800; margin: 0 0 20px;
  }
  h1 em { font-style: normal; color: var(--mars); }
  .hero p.lede { color: var(--fg-mid); font-size: 17px; margin: 0 0 26px; max-width: 30em; }
  .hero p.lede b { color: var(--fg); font-weight: 650; }
  .cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
  .btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 22px; border-radius: 10px; font-weight: 650; font-size: 15px;
    text-decoration: none; border: 1px solid transparent; transition: transform .12s, background .15s;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary { background: var(--mars); color: #180703; }
  .btn-primary:hover { background: var(--mars-2); }
  .btn-ghost { border-color: var(--line); color: var(--fg); background: var(--panel); }
  .btn-ghost:hover { border-color: #2c3546; }

  /* Stat bar in MarsCoin's register: gold numeral carrying the weight, with a
     tiny wide-tracked caption underneath rather than a sentence. */
  .mini { display: grid; grid-template-columns: repeat(3, auto); gap: 38px; justify-content: start;
          padding-top: 26px; border-top: 1px solid var(--line-soft); }
  .mini h4 {
    margin: 0 0 6px; font-family: var(--mono); font-size: 26px; font-weight: 700;
    color: var(--gold); letter-spacing: -1px; font-variant-numeric: tabular-nums;
  }
  .mini p {
    margin: 0; color: var(--fg-dim); font-size: 10.5px; line-height: 1.5;
    letter-spacing: .14em; text-transform: uppercase; font-family: var(--mono);
  }

  /* ---------- mission terminal ---------- */
  .terminal {
    background: linear-gradient(165deg, #12161f, #0a0c12);
    border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
    box-shadow: 0 30px 70px -30px rgba(255,90,48,.35);
  }
  .term-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 18px; border-bottom: 1px solid var(--line-soft); background: rgba(255,255,255,.014);
  }
  .term-title { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-dim); }
  .term-body { padding: 26px 24px 22px; }
  .clock {
    font-family: var(--mono); font-size: clamp(46px, 7.6vw, 68px); font-weight: 700;
    line-height: 1; letter-spacing: -2px; font-variant-numeric: tabular-nums;
  }
  .clock.soon { color: var(--mars); }
  .clock-cap { color: var(--fg-dim); font-size: 12.5px; margin-top: 9px; font-family: var(--mono); }
  .bar { height: 5px; background: var(--panel-2); border-radius: 4px; overflow: hidden; margin: 20px 0 8px; }
  .bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--mars), var(--gold)); transition: width .8s ease; }
  .term-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
  .term-grid div span { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 5px; }
  .term-grid div b { font-family: var(--mono); font-size: 19px; font-weight: 700; font-variant-numeric: tabular-nums; }
  .term-grid div i { font-style: normal; font-family: var(--mono); font-size: 11px;
                     color: var(--fg-dim); font-variant-numeric: tabular-nums; margin-left: 5px;
                     white-space: nowrap; }

  /* ---------- reward chain strip ---------- */
  .strip { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-alt); padding: 26px 0; }
  .eyebrow {
    font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--mars); text-align: center; margin-bottom: 16px;
  }
  .chain-row { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
  .node {
    display: flex; align-items: center; gap: 11px;
    border: 1px solid var(--line); background: var(--panel); border-radius: 12px; padding: 11px 17px;
  }
  .badge {
    width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
    font-size: 11px; font-weight: 800; font-family: var(--mono); flex-shrink: 0;
  }
  .b-gacha { background: linear-gradient(140deg, #ff5a30, #b3260a); color: #fff; }
  .b-mars  { background: linear-gradient(140deg, #ff9d4d, #d2481a); color: #fff; }
  .badge-img { background: none; object-fit: contain; }
  .b-spcx  { background: linear-gradient(140deg, #cfd8e6, #6f7d92); color: #10141c; }
  .node b { display: block; font-size: 14px; }
  .node small { color: var(--fg-dim); font-size: 12px; }
  .arrow { color: var(--fg-dim); font-size: 18px; }

  /* ---------- sections ---------- */
  section { padding: 84px 0; border-bottom: 1px solid var(--line-soft); }
  section.alt { background: var(--bg-alt); }
  .sec-head { text-align: center; max-width: 660px; margin: 0 auto 46px; }
  .sec-head h2 { font-size: clamp(27px, 3.6vw, 38px); letter-spacing: -1px; margin: 0 0 12px; font-weight: 800; }
  .sec-head p { color: var(--fg-mid); margin: 0; font-size: 15.5px; }

  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
  .step-n {
    width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
    background: rgba(255,90,48,.13); border: 1px solid rgba(255,90,48,.32);
    color: var(--mars); font-family: var(--mono); font-size: 13px; font-weight: 700; margin-bottom: 14px;
  }
  .step h4 { margin: 0 0 7px; font-size: 15.5px; }
  .step p { margin: 0; color: var(--fg-mid); font-size: 13.5px; }

  .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .card { background: var(--panel); border: 1px solid var(--line); border-radius: 15px; padding: 24px 22px; }
  .card .ico {
    width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; font-size: 16px;
    background: rgba(255,181,69,.11); border: 1px solid rgba(255,181,69,.26); margin-bottom: 15px;
  }
  .card h4 { margin: 0 0 8px; font-size: 15.5px; }
  .card p { margin: 0; color: var(--fg-mid); font-size: 13.5px; }

  /* ---------- lore ---------- */
  .lore { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
  .lore h3 { font-size: 25px; letter-spacing: -.6px; margin: 0 0 14px; }
  .lore p { color: var(--fg-mid); font-size: 15px; }
  .quote {
    border-left: 2px solid var(--mars); padding: 4px 0 4px 18px; margin: 22px 0;
    font-size: 16.5px; color: var(--fg); font-style: italic;
  }
  .quote cite { display: block; margin-top: 8px; font-size: 13px; color: var(--fg-dim); font-style: normal; }
  .facts { background: var(--panel); border: 1px solid var(--line); border-radius: 15px; padding: 8px 22px; }
  .fact { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line-soft); font-size: 14px; }
  .fact:first-child { border-top: 0; }
  .fact span { color: var(--fg-mid); }
  .fact b { font-family: var(--mono); text-align: right; }
  .verified { color: var(--good); font-size: 12px; font-family: var(--mono); }
  .smallprint { color: var(--fg-dim); font-size: 12.5px; line-height: 1.65; margin: 18px 0 0; }

  /* ---------- draws + table ---------- */
  .round { border-top: 1px solid var(--line-soft); padding: 18px 0; }
  .round:first-of-type { border-top: 0; }
  .round-head { display: flex; gap: 12px; align-items: baseline; flex-wrap: wrap; margin-bottom: 11px; }
  .round-id { font-weight: 700; font-size: 15.5px; }
  .meta { color: var(--fg-dim); font-size: 12px; font-family: var(--mono); }
  .win-row { display: flex; justify-content: space-between; gap: 14px; padding: 6px 0; font-size: 14px; }
  .addr { color: var(--fg-mid); font-family: var(--mono); }
  .prize { color: var(--gold); font-weight: 650; }
  .more { padding-top: 8px; font-size: 12.5px; }
  .more a { color: var(--fg-dim); text-decoration: none; }
  .more a:hover { color: var(--mars-2); }

  .panel { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 26px 28px; }
  .scroll { overflow-x: auto; }
  table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 460px; }
  th { text-align: left; font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--fg-dim); padding: 0 12px 11px 0; font-weight: 600; font-family: var(--mono); }
  td { padding: 12px 12px 12px 0; border-top: 1px solid var(--line-soft); font-variant-numeric: tabular-nums; }
  td.right, th.right { text-align: right; padding-right: 0; }
  .rank { color: var(--fg-dim); width: 34px; font-family: var(--mono); }
  .mono { font-family: var(--mono); }

  /* ---------- stat band ---------- */
  .band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
  .band .v { font-family: var(--mono); font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; letter-spacing: -1px; }
  .band .k { color: var(--fg-dim); font-size: 12.5px; margin-top: 6px; }

  /* ---------- faq ---------- */
  .faq { max-width: 780px; margin: 0 auto; }
  details { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 11px; }
  summary { cursor: pointer; padding: 16px 20px; font-weight: 600; font-size: 15px; list-style: none; display: flex; justify-content: space-between; gap: 14px; }
  summary::-webkit-details-marker { display: none; }
  summary::after { content: "+"; color: var(--fg-dim); font-family: var(--mono); font-size: 18px; line-height: 1; }
  details[open] summary::after { content: "–"; color: var(--mars); }
  details p { margin: 0; padding: 0 20px 18px; color: var(--fg-mid); font-size: 14px; }

  code { background: var(--panel-2); border: 1px solid var(--line); border-radius: 5px; padding: 1.5px 6px; font-family: var(--mono); font-size: 12.5px; }
  .empty { color: var(--fg-dim); font-size: 14px; padding: 10px 0; }

  footer { padding: 54px 0 42px; border-top: 1px solid var(--line-soft); background: var(--bg-alt);
            color: var(--fg-dim); font-size: 13px; line-height: 1.7; }
  footer a { color: var(--fg-mid); }
  .foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 36px; }
  .foot-brand-row { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 17px;
                    color: var(--fg); margin-bottom: 11px; letter-spacing: -.3px; }
  .foot-brand-row img { width: 26px; height: 26px; }
  .foot-brand-row .brand-name b { color: var(--mars); font-weight: 800; }
  .foot-brand p { margin: 0 0 16px; max-width: 26em; }
  .foot-col h5 { margin: 0 0 12px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em;
                 text-transform: uppercase; color: var(--fg-dim); font-weight: 600; }
  .foot-col a { display: block; padding: 5px 0; color: var(--fg-mid); text-decoration: none; font-size: 13.5px; }
  .foot-col a:hover { color: var(--mars-2); }
  .social { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line);
            background: var(--panel); border-radius: 9px; padding: 8px 14px; color: var(--fg-mid);
            text-decoration: none; font-size: 13.5px; transition: border-color .15s, color .15s; }
  .social:hover { border-color: #2c3546; color: var(--fg); }
  .social svg { width: 14px; height: 14px; }
  .nav-x { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 8px;
           border: 1px solid var(--line); background: var(--panel); color: var(--fg-mid); }
  .nav-x:hover { color: var(--fg); border-color: #2c3546; }
  .nav-x svg { width: 13px; height: 13px; }
  .foot-bottom { border-top: 1px solid var(--line-soft); padding-top: 22px;
                 display: flex; flex-direction: column; gap: 7px; font-size: 12.5px; }
  @media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
  @media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

  @media (max-width: 900px) {
    .hero-grid, .lore { grid-template-columns: 1fr; gap: 38px; }
    .steps, .cards, .band { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .hero { padding: 46px 22px 40px; }
    .planet { top: 620px; }
    section { padding: 58px 0; }
  }
  @media (max-width: 560px) {
    .steps, .cards, .band, .mini { grid-template-columns: 1fr; }
    .mini { gap: 18px; }
    /* Stack the chain rather than let it wrap — wrapping orphans an arrow. */
    .chain-row { flex-direction: column; }
    .chain-row .node { width: 100%; max-width: 300px; }
    .arrow { transform: rotate(90deg); }
  }

/* =====================================================================
   Docs page (/how-it-works.html)
   ===================================================================== */
.doc-hero { padding: 66px 0 54px; text-align: center; border-bottom: 1px solid var(--line-soft); }
.doc-hero h1 { font-size: clamp(32px, 4.6vw, 50px); letter-spacing: -1.4px; margin: 0 auto 16px; max-width: 16em; }
.doc-hero p { color: var(--fg-mid); font-size: 16.5px; max-width: 46em; margin: 0 auto; }

/* sticky table of contents rail */
.doc-layout { display: grid; grid-template-columns: 210px 1fr; gap: 52px; align-items: start; padding: 54px 0 0; }
.toc { position: sticky; top: 86px; }
.toc div {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 14px;
}
.toc a {
  display: block; padding: 7px 0 7px 13px; color: var(--fg-mid); text-decoration: none;
  font-size: 13.5px; border-left: 2px solid var(--line); transition: color .15s, border-color .15s;
}
.toc a:hover { color: var(--fg); border-left-color: var(--mars); }

.doc h2 { font-size: 27px; letter-spacing: -.8px; margin: 0 0 14px; scroll-margin-top: 92px; }
.doc h3 { font-size: 16.5px; margin: 32px 0 10px; }
.doc p { color: var(--fg-mid); margin: 0 0 15px; }
.doc > section { padding: 0 0 56px; border-bottom: 1px solid var(--line-soft); margin-bottom: 56px; }
.doc > section:last-child { border-bottom: 0; }
.doc ul, .doc ol { color: var(--fg-mid); padding-left: 20px; margin: 0 0 15px; }
.doc li { margin-bottom: 9px; }
.doc li b, .doc p b { color: var(--fg); font-weight: 650; }

pre {
  background: #0b0e14; border: 1px solid var(--line); border-radius: 11px;
  padding: 16px 18px; overflow-x: auto; margin: 0 0 18px;
  font-family: var(--mono); font-size: 12.5px; line-height: 1.75; color: #cfd8e6;
}
pre .c { color: var(--fg-dim); }
pre .k { color: var(--mars-2); }
pre .s { color: var(--gold); }

/* horizontal path diagram */
.flow { display: flex; align-items: stretch; gap: 8px; flex-wrap: wrap; margin: 0 0 20px; }
.flow-step {
  flex: 1 1 130px; background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; padding: 15px 14px; text-align: center;
}
.flow-step i { display: block; font-style: normal; font-size: 17px; margin-bottom: 8px; color: var(--mars); }
.flow-step b { display: block; font-size: 13.5px; margin-bottom: 3px; }
.flow-step small { color: var(--fg-dim); font-size: 11.5px; }
.flow-arrow { display: grid; place-items: center; color: var(--fg-dim); font-size: 15px; }

/* spec / parameter rows */
.spec { background: var(--panel); border: 1px solid var(--line); border-radius: 13px; padding: 4px 20px; margin: 0 0 18px; }
.spec-row { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-top: 1px solid var(--line-soft); font-size: 14px; }
.spec-row:first-child { border-top: 0; }
.spec-row span { color: var(--fg-mid); }
.spec-row b { font-family: var(--mono); text-align: right; white-space: nowrap; }

/* comparison table */
.compare { width: 100%; border-collapse: collapse; font-size: 13.5px; background: var(--panel); border: 1px solid var(--line); border-radius: 13px; overflow: hidden; }
.compare th { padding: 13px 18px; font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--fg-dim); font-family: var(--mono); text-align: left; background: rgba(255,255,255,.02); }
.compare td { padding: 13px 18px; border-top: 1px solid var(--line-soft); color: var(--fg-mid); vertical-align: top; }
.compare td.ours { color: var(--gold); }

/* callouts */
.callout { border-radius: 12px; padding: 16px 19px; margin: 0 0 18px; font-size: 13.5px; border: 1px solid; }
/* Only the leading <b> is the callout title — a blanket rule here breaks
   inline emphasis inside the body onto its own line. */
.callout > b:first-child { display: block; margin-bottom: 5px; }
.callout.warn { background: rgba(255,194,75,.07); border-color: rgba(255,194,75,.28); color: #e8d4a8; }
.callout.warn b { color: var(--warn); }
.callout.note { background: rgba(41,217,140,.05); border-color: rgba(41,217,140,.22); color: #b8d9c9; }
.callout.note b { color: var(--good); }

@media (max-width: 900px) {
  .doc-layout { grid-template-columns: 1fr; gap: 0; }
  .toc { display: none; }
  .flow-arrow { display: none; }
}


/* ---- winner feed: make a win read as an event ------------------------------ */
.round.arrive { animation: arrive .9s cubic-bezier(.2,.7,.3,1); }
@keyframes arrive {
  0%   { opacity: 0; transform: translateY(-8px); box-shadow: inset 0 0 0 999px rgba(255,90,48,.10); }
  60%  { opacity: 1; transform: none; }
  100% { box-shadow: inset 0 0 0 999px rgba(255,90,48,0); }
}
@media (prefers-reduced-motion: reduce) { .round.arrive { animation: none; } }

.latest {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mars); border: 1px solid rgba(255,90,48,.4); border-radius: 4px;
  padding: 2px 6px; vertical-align: 2px;
}
.win-row { display: flex; align-items: baseline; gap: 11px; padding: 7px 0; font-size: 14px; }
.wr-rank {
  font-family: var(--mono); font-size: 11px; color: var(--fg-dim);
  width: 30px; flex-shrink: 0; letter-spacing: .04em;
}
.win-row .addr { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.win-row .prize { white-space: nowrap; }
.win-row .prize i { font-style: normal; font-size: 11.5px; color: var(--fg-dim); margin-left: 6px; font-family: var(--mono); }

/* first place should not look like tenth */
.win-row.r1 { font-size: 16px; padding: 9px 0; }
.win-row.r1 .wr-rank { color: var(--gold); font-weight: 700; }
.win-row.r1 .prize { color: var(--gold); font-size: 17px; font-weight: 700; }
.win-row.r2 .prize, .win-row.r3 .prize { color: var(--mars-2); }
.win-row.r2 .wr-rank, .win-row.r3 .wr-rank { color: var(--fg-mid); }
