/* MODERN CLAUDEFARE — site/site.css
 *
 * The landing page. Same palette as the game's HUD, because the site and the
 * thing behind it should look like the same object: near-black, one amber, one
 * green, one red used only where it means something, and a monospace face
 * throughout — the game draws every glyph in Courier and the site should not
 * quietly promise a nicer typeface than the product has.
 *
 * Scoped under #site so nothing here can reach the game's canvases.
 */

:root {
  --bg: #04050a;
  --bg2: #080a0f;
  --panel: #0b0e14;
  --line: rgba(255, 255, 255, 0.09);
  --ink: #e9edf2;
  --dim: #9aa1a8;
  --dimmer: #6a7079;
  --amber: #ffcf5c;
  --green: #4fd070;
  --sick: #8ecf6a;
  --red: #e04a3c;
  --blood: #8e1b1b;
  --mono: "Courier New", ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* The game hides the cursor and locks scrolling; the site needs both back. */
body.site-open { cursor: auto; overflow: hidden; }
body.site-open #wrap { display: none; }
body.in-game #site { display: none; }

#site {
  position: fixed;
  inset: 0;
  z-index: 10;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
#site.gone { display: none; }
#site * { box-sizing: border-box; }
#site a { color: inherit; text-decoration: none; }
#site h1, #site h2, #site h3, #site p, #site ol, #site ul { margin: 0; }
#site code { font-family: var(--mono); }

/* ---------------- overlays ---------------- */

#site .grain,
#site .scan { position: fixed; inset: 0; pointer-events: none; z-index: 40; }
#site .grain {
  opacity: 0.05;
  background-image:
    repeating-conic-gradient(#fff 0% 25%, transparent 0% 50%);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}
#site .scan {
  background: repeating-linear-gradient(to bottom,
    rgba(0, 0, 0, 0) 0 2px, rgba(0, 0, 0, 0.28) 2px 4px);
  opacity: 0.35;
}

/* Edge rulers: the district strip down one side, the run's status down the
 * other. Decoration, but decoration that says what the game is about. */
#site .ruler {
  position: fixed; top: 0; bottom: 0; width: 30px; z-index: 30;
  display: flex; flex-direction: column; justify-content: space-around;
  align-items: center; pointer-events: none;
  font-size: 9px; letter-spacing: 2px; color: var(--dimmer);
  border-inline: 1px solid var(--line);
}
#site .ruler.left { left: 0; }
#site .ruler.right { right: 0; }
#site .ruler .tick { writing-mode: vertical-rl; text-orientation: mixed; white-space: nowrap; }
@media (max-width: 1100px) { #site .ruler { display: none; } }

/* ---------------- navbar ---------------- */

#site .nav {
  position: sticky; top: 0; z-index: 35;
  display: flex; align-items: center; gap: 18px;
  padding: 12px 30px;
  background: rgba(4, 5, 10, 0.82);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--line);
}
#site .brand {
  display: flex; align-items: center; gap: 9px;
  font-size: 15px; letter-spacing: 2px; text-transform: uppercase;
}
#site .brand b { color: var(--amber); font-weight: 700; }
#site .brand .mark {
  width: 13px; height: 13px; border: 2px solid var(--blood); border-radius: 50%;
  box-shadow: 0 0 12px rgba(142, 27, 27, 0.9);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }

#site .nav .links { display: flex; gap: 22px; margin-left: 20px; }
#site .nav .links a {
  font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--dim);
  padding-bottom: 2px; border-bottom: 1px solid transparent; transition: color .18s, border-color .18s;
}
#site .nav .links a:hover { color: var(--ink); }
#site .nav .links a.on { color: var(--amber); border-color: var(--amber); }

#site .nav .live {
  margin-left: auto; display: flex; align-items: center; gap: 7px;
  font-size: 11px; color: var(--dim);
}
#site .nav .live i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green); animation: pulse 1.8s ease-in-out infinite;
}
#site .nav .live b { color: var(--ink); }
#site .nav .live .lbl { color: var(--dimmer); }

#site .xbtn, #site .buy, #site .play {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 9px 14px; border: 1px solid var(--line); color: var(--dim);
  transition: all .18s;
}
#site .xbtn { padding: 9px 11px; }
#site .xbtn:hover { color: var(--ink); border-color: var(--ink); }
#site .buy { color: var(--amber); border-color: rgba(255, 207, 92, 0.4); }
#site .buy:hover { background: rgba(255, 207, 92, 0.12); }
#site .buy .coin {
  display: inline-grid; place-items: center; width: 16px; height: 16px;
  border-radius: 50%; background: var(--amber); color: #201700; font-weight: 700; font-size: 11px;
}
#site .play { color: #04140a; background: var(--green); border-color: var(--green); font-weight: 700; }
#site .play:hover { box-shadow: 0 0 22px rgba(79, 208, 112, 0.45); }
#site .burger { display: none; }

/* ---------------- hero ---------------- */

#site .hero {
  position: relative; min-height: calc(100vh - 54px);
  display: flex; align-items: center; padding: 0 clamp(30px, 8vw, 130px);
  overflow: hidden;
}
#site .hero .ascii {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0.62; filter: contrast(1.3) saturate(0.2) brightness(0.95);
}
#site .hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(105% 80% at 18% 50%, rgba(4, 5, 10, 0.97) 10%, rgba(4, 5, 10, 0.62) 46%, rgba(4, 5, 10, 0.34) 100%),
    linear-gradient(to bottom, rgba(4, 5, 10, 0.9), transparent 22%, transparent 70%, var(--bg));
}
#site .hero-copy { position: relative; max-width: 720px; padding: 60px 0; }
#site .kicker {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--sick); margin-bottom: 20px;
}
#site .hero h1 {
  font-size: clamp(46px, 9vw, 104px); line-height: 0.94; letter-spacing: -1px;
  text-transform: uppercase; font-weight: 700;
  text-shadow: 3px 0 0 rgba(142, 27, 27, 0.55), -2px 0 0 rgba(79, 208, 112, 0.18);
}
#site .hero h1 em { font-style: normal; color: var(--amber); }
#site .hero .sub {
  margin-top: 24px; max-width: 560px; font-size: 14px; line-height: 1.75; color: var(--dim);
}

#site .hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
#site .hero-cta.center { justify-content: center; }
#site .btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 24px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--line); color: var(--ink); transition: all .18s;
}
#site .btn.primary {
  background: var(--green); border-color: var(--green); color: #04140a; font-weight: 700;
}
#site .btn.primary:hover { box-shadow: 0 0 28px rgba(79, 208, 112, 0.5); transform: translateY(-1px); }
#site .btn.buy { color: var(--amber); border-color: rgba(255, 207, 92, 0.45); }
#site .btn.buy:hover { background: rgba(255, 207, 92, 0.12); }
#site .btn.buy .coin {
  display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%;
  background: var(--amber); color: #201700; font-weight: 700;
}
#site .btn.ghost { color: var(--dim); }
#site .btn.ghost:hover { color: var(--ink); border-color: var(--ink); }

#site .hero-meta { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
#site .ca {
  display: inline-flex; align-items: center; gap: 10px; width: fit-content;
  padding: 8px 8px 8px 12px; border: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.4);
}
#site .ca-k { font-size: 10px; letter-spacing: 2px; color: var(--dimmer); }
#site .ca-v { font-size: 11px; color: var(--ink); max-width: 46vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
#site .ca.soon .ca-v { color: var(--dimmer); font-style: italic; }
#site .ca-copy {
  font-family: var(--mono); font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 6px 11px; border: 1px solid var(--line); background: transparent; color: var(--dim);
  cursor: pointer; transition: all .18s;
}
#site .ca-copy:not(:disabled):hover { color: var(--ink); border-color: var(--ink); }
#site .ca-copy:disabled { opacity: 0.45; cursor: not-allowed; }
#site .ca-copy.ok { color: var(--green); border-color: var(--green); }
#site .live-line { font-size: 11px; color: var(--dimmer); display: flex; align-items: center; gap: 8px; }
#site .live-line i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green); animation: pulse 1.8s ease-in-out infinite;
}
#site .live-line b { color: var(--ink); }

/* The marginal notes sit over the ASCII, which is busy by design — they need a
 * plate under them or they are decoration you cannot read. */
#site .caption {
  position: absolute; max-width: 250px; font-size: 10px; line-height: 1.6; color: var(--dim);
  border-left: 1px solid var(--line); padding: 11px 13px;
  background: rgba(4, 5, 10, 0.78); backdrop-filter: blur(3px);
}
#site .caption b { display: block; color: var(--sick); letter-spacing: 2px; margin-bottom: 5px; }
#site .caption.tl { top: 90px; right: 60px; }
#site .caption.br { bottom: 80px; right: 60px; }
@media (max-width: 1000px) { #site .caption { display: none; } }

#site .scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--dimmer);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
#site .scroll-hint i {
  width: 1px; height: 34px;
  background: linear-gradient(to bottom, transparent, var(--dimmer));
  animation: drop 2s ease-in-out infinite;
}
@keyframes drop { 0%, 100% { opacity: 0.25; transform: translateY(-5px); } 50% { opacity: 1; transform: translateY(0); } }

/* ---------------- marquee ---------------- */

#site .marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  background: var(--blood); padding: 11px 0;
}
#site .marquee > div { display: flex; gap: 42px; width: max-content; animation: slide 34s linear infinite; }
#site .marquee span {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: #f6e7e7; white-space: nowrap;
}
#site .marquee span::after { content: " ·"; opacity: 0.5; margin-left: 42px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------------- bands ---------------- */

#site .band { padding: clamp(58px, 7vw, 96px) 0; border-bottom: 1px solid var(--line); }
#site .band.alt { background: var(--bg2); }
#site .band.cta {
  background:
    radial-gradient(70% 130% at 50% 0%, rgba(142, 27, 27, 0.3), transparent 65%), var(--bg);
}
#site .wrap { width: min(1180px, calc(100% - 100px)); margin: 0 auto; }
#site .wrap.center { text-align: center; }
#site .tag {
  display: inline-block; font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--sick); margin-bottom: 18px;
}
#site h2.big, #site h1.big {
  font-size: clamp(28px, 4.6vw, 52px); line-height: 1.1; text-transform: uppercase;
  letter-spacing: -0.5px; font-weight: 700;
}
#site .big em { font-style: normal; color: var(--amber); }
#site .lede {
  margin-top: 20px; max-width: 720px; font-size: 14px; line-height: 1.8; color: var(--dim);
}
#site .wrap.center .lede { margin-inline: auto; }
#site h3.sub {
  margin-top: 40px; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--amber);
}
#site h3.sub + p { margin-top: 12px; font-size: 13px; line-height: 1.85; color: var(--dim); }
#site .page p + h3.sub { margin-top: 38px; }

/* fade-up on scroll */
#site .band, #site .marquee, #site .foot, #site .page {
  opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease;
}
#site .band.in, #site .marquee.in, #site .foot.in, #site .page.in { opacity: 1; transform: none; }

/* ---------------- cards ---------------- */

#site .grid { display: grid; gap: 16px; margin-top: 40px; }
#site .grid.c2 { grid-template-columns: repeat(2, 1fr); }
#site .grid.c3 { grid-template-columns: repeat(3, 1fr); }
#site .grid.c4 { grid-template-columns: repeat(4, 1fr); }
#site .card {
  border: 1px solid var(--line); background: var(--panel); padding: 24px 22px;
  transition: border-color .2s, transform .2s, background .2s;
}
#site .card:hover { border-color: rgba(255, 207, 92, 0.42); transform: translateY(-3px); }
#site .card .n {
  display: flex; align-items: center; gap: 7px;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--dimmer);
}
#site .card .ic { color: var(--sick); }
#site .card h3 { margin-top: 14px; font-size: 15px; letter-spacing: 0.5px; }
#site .card p { margin-top: 10px; font-size: 12px; line-height: 1.75; color: var(--dim); }
#site .card b { color: var(--amber); font-weight: 700; }
#site .card.step .n { font-size: 20px; color: rgba(255, 255, 255, 0.14); letter-spacing: 0; }
#site .card.fig .v {
  display: block; margin-top: 12px; font-size: 30px; color: var(--amber); letter-spacing: -1px;
}
#site .card.fig h3 { margin-top: 4px; font-size: 12px; color: var(--ink); }

#site .split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
#site .halfcard { border: 1px solid var(--line); background: var(--panel); padding: 30px 28px; }
#site .halfcard .n {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
}
#site .halfcard h3 { margin-top: 14px; font-size: 19px; text-transform: uppercase; }
#site .halfcard p { margin-top: 12px; font-size: 12px; line-height: 1.8; color: var(--dim); }
#site .halfcard.green { border-top: 2px solid var(--green); }
#site .halfcard.green .n { color: var(--green); }
#site .halfcard.amber { border-top: 2px solid var(--amber); }
#site .halfcard.amber .n { color: var(--amber); }

#site .more {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 30px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--amber);
  border-bottom: 1px solid rgba(255, 207, 92, 0.35); padding-bottom: 4px;
}
#site .more i { font-style: normal; transition: transform .18s; }
#site .more:hover i { transform: translateX(5px); }

/* ---------------- tokenomics ---------------- */

#site .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
#site .stat { border: 1px solid var(--line); background: var(--panel); padding: 22px; text-align: center; }
#site .stat b { display: block; font-size: 19px; color: var(--amber); letter-spacing: -0.5px; }
#site .big-stats .stat b { font-size: 22px; }
#site .stat span { display: block; margin-top: 8px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--dimmer); }

#site .alloc { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; }
#site .alloc .row { display: grid; grid-template-columns: 250px 1fr 52px; gap: 16px; align-items: center; }
#site .alloc .k { font-size: 11px; letter-spacing: 1px; color: var(--dim); text-transform: uppercase; }
#site .alloc .bar { height: 9px; background: rgba(255, 255, 255, 0.07); position: relative; }
#site .alloc .bar i {
  position: absolute; inset: 0 auto 0 0; display: block;
  background: linear-gradient(90deg, var(--blood), var(--amber));
}
#site .alloc .v { font-size: 12px; color: var(--amber); text-align: right; }

/* ---------------- roadmap ---------------- */

#site .road { margin-top: 40px; list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0; }
#site .road li {
  position: relative; padding: 24px 0 24px 34px; border-left: 1px solid var(--line);
}
#site .road li::before {
  content: ""; position: absolute; left: -6px; top: 30px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--dimmer);
}
#site .road li.done::before { border-color: var(--green); background: var(--green); }
#site .road li.live::before { border-color: var(--amber); background: var(--amber); box-shadow: 0 0 14px var(--amber); }
#site .road .ph { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--dimmer); }
#site .road li.done .ph { color: var(--green); }
#site .road li.live .ph { color: var(--amber); }
#site .road h3 { margin-top: 10px; font-size: 17px; text-transform: uppercase; }
#site .road p { margin-top: 10px; font-size: 12px; line-height: 1.8; color: var(--dim); max-width: 700px; }

/* ---------------- sub-pages ---------------- */

#site .page { padding: 60px 0 110px; }
#site .back {
  display: inline-block; margin-bottom: 26px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--dimmer);
}
#site .back:hover { color: var(--ink); }
#site .page .grid { margin-top: 30px; }

/* ---------------- footer ---------------- */

#site .foot { padding: 50px 0 70px; background: var(--bg2); }
#site .foot p { font-size: 12px; line-height: 1.8; color: var(--dim); max-width: 780px; }
#site .foot b { color: var(--amber); letter-spacing: 2px; }
#site .foot .small { margin-top: 14px; font-size: 10px; color: var(--dimmer); }

/* ---------------- connect ---------------- */

#site .connect {
  min-height: calc(100vh - 54px); display: grid; place-items: center; padding: 50px 20px;
  background: radial-gradient(60% 60% at 50% 40%, rgba(142, 27, 27, 0.16), transparent 70%);
}
#site .connect .box {
  width: min(520px, 100%); border: 1px solid var(--line); background: var(--panel);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}
#site .connect .top { padding: 28px 30px 22px; border-bottom: 1px solid var(--line); }
#site .connect h2 { font-size: 22px; text-transform: uppercase; letter-spacing: 1px; }
#site .connect .top p { margin-top: 12px; font-size: 12px; line-height: 1.75; color: var(--dim); }
#site .connect .body { padding: 26px 30px 30px; }
#site .connect label {
  display: block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--dimmer); margin-bottom: 10px;
}
#site .connect input {
  width: 100%; padding: 13px 14px; font-family: var(--mono); font-size: 14px;
  color: var(--ink); background: #05070b; border: 1px solid var(--line); outline: none;
  letter-spacing: 1px;
}
#site .connect input:focus { border-color: var(--amber); }
#site .wallets { display: flex; flex-direction: column; gap: 10px; }
#site .wallet {
  display: flex; align-items: center; gap: 14px; width: 100%; padding: 14px;
  font-family: var(--mono); text-align: left; cursor: pointer;
  background: #05070b; border: 1px solid var(--line); color: var(--ink); transition: all .16s;
}
#site .wallet:hover { border-color: rgba(255, 255, 255, 0.28); }
#site .wallet.on { border-color: var(--amber); background: rgba(255, 207, 92, 0.07); }
#site .wmark {
  display: grid; place-items: center; width: 36px; height: 36px; flex: none;
  font-size: 15px; font-weight: 700; color: #04050a; background: var(--dim);
}
#site .wmark.phantom { background: #ab9ff2; }
#site .wmark.solflare { background: #fc7227; }
#site .wmark.demo { background: var(--green); }
#site .wtxt { display: flex; flex-direction: column; gap: 4px; flex: 1; }
#site .wallet .nm { font-size: 13px; letter-spacing: 1px; }
#site .wallet .ds { font-size: 10px; color: var(--dimmer); }
#site .wallet .pick {
  width: 15px; height: 15px; flex: none; border: 1px solid var(--line); border-radius: 50%;
}
#site .wallet.on .pick { border-color: var(--amber); background: var(--amber); box-shadow: inset 0 0 0 3px var(--panel); }
#site .connect .go {
  width: 100%; margin-top: 22px; padding: 15px; cursor: pointer;
  font-family: var(--mono); font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 700; color: #04140a; background: var(--green); border: 1px solid var(--green);
  transition: all .18s;
}
#site .connect .go:disabled { opacity: 0.35; cursor: not-allowed; }
#site .connect .go:not(:disabled):hover { box-shadow: 0 0 26px rgba(79, 208, 112, 0.45); }
#site .connect .err { margin-top: 12px; font-size: 11px; line-height: 1.6; color: var(--red); min-height: 14px; }
#site .connect .note { margin-top: 16px; font-size: 10px; line-height: 1.7; color: var(--dimmer); }

/* ---------------- the curtain, and the way back ---------------- */

#drift {
  position: fixed; inset: 0; z-index: 60; display: none;
  place-items: center; background: var(--bg); color: var(--ink); font-family: var(--mono);
}
#drift.on { display: grid; }
#drift.out { animation: fade .7s ease forwards; }
@keyframes fade { to { opacity: 0; visibility: hidden; } }
#drift .inner { text-align: center; padding: 20px; }
#drift h3 { font-size: clamp(16px, 3vw, 26px); letter-spacing: 5px; text-transform: uppercase; color: var(--blood); }
#drift p { margin-top: 14px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--dimmer); }
#drift .bar { margin: 26px auto 0; width: 220px; height: 2px; background: rgba(255, 255, 255, 0.1); overflow: hidden; }
#drift .bar i { display: block; width: 40%; height: 100%; background: var(--blood); animation: sweep 1.3s ease-in-out infinite; }
@keyframes sweep { 0% { transform: translateX(-100%); } 100% { transform: translateX(320%); } }

/* The in-game bar: the way out, and what is signed in. Sits above the compass
 * and clear of the HUD, dim until the pointer finds it — it is a utility, not
 * part of the game's own readout, and it should never compete with the ammo
 * counter for attention. */
#ingame-bar {
  position: fixed; top: 9px; left: 50%; transform: translate(-50%, -24px); z-index: 50;
  display: flex; align-items: stretch; gap: 8px;
  opacity: 0; transition: opacity .45s ease, transform .45s ease;
  font-family: var(--mono);
}
#ingame-bar.show { opacity: 0.55; transform: translate(-50%, 0); }
#ingame-bar:hover { opacity: 1; }

#to-site, #wallet-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px; font-family: var(--mono); font-size: 10px; letter-spacing: 1.6px;
  text-transform: uppercase; white-space: nowrap;
  color: var(--dim); background: rgba(4, 5, 10, 0.88); border: 1px solid var(--line);
  transition: color .18s, border-color .18s, background .18s;
}
#to-site { cursor: pointer; }
#to-site:hover { color: var(--ink); border-color: var(--ink); }

#wallet-chip i {
  width: 7px; height: 7px; border-radius: 50%; flex: none; background: var(--dimmer);
}
/* Never uppercase this: it carries a base58 address, and 7xKX…t8Ka and
 * 7XKX…T8KA are not the same key. */
#wallet-chip b { font-weight: 400; letter-spacing: 1.2px; text-transform: none; }
#wallet-chip.on { color: var(--green); border-color: rgba(79, 208, 112, 0.4); }
#wallet-chip.on i { background: var(--green); box-shadow: 0 0 8px var(--green); }
#wallet-chip.guest, #wallet-chip.off { cursor: pointer; color: var(--amber); border-color: rgba(255, 207, 92, 0.35); }
#wallet-chip.guest i, #wallet-chip.off i { background: var(--amber); box-shadow: 0 0 8px rgba(255, 207, 92, 0.8); }
#wallet-chip.guest:hover, #wallet-chip.off:hover { background: rgba(255, 207, 92, 0.12); }
#wallet-chip.off { color: var(--dimmer); border-color: var(--line); }
#wallet-chip.off i { background: var(--dimmer); box-shadow: none; }

@media (max-width: 720px) {
  #ingame-bar { top: 6px; gap: 6px; }
  #to-site, #wallet-chip { padding: 6px 9px; font-size: 9px; letter-spacing: 1px; }
}

/* ---------------- responsive ---------------- */

@media (max-width: 980px) {
  #site .wrap { width: calc(100% - 44px); }
  #site .grid.c3, #site .grid.c4, #site .stats { grid-template-columns: repeat(2, 1fr); }
  #site .split, #site .grid.c2 { grid-template-columns: 1fr; }
  #site .alloc .row { grid-template-columns: 1fr; gap: 7px; }
  #site .alloc .v { text-align: left; }
  #site .nav { gap: 12px; padding: 11px 16px; flex-wrap: wrap; }
  #site .nav .links {
    order: 10; width: 100%; margin: 0; display: none; flex-direction: column; gap: 14px;
    padding: 14px 2px 6px; border-top: 1px solid var(--line);
  }
  #site .nav.open .links { display: flex; }
  #site .burger {
    display: inline-block; order: 4; padding: 7px 11px; cursor: pointer;
    font-family: var(--mono); font-size: 15px; color: var(--dim);
    background: transparent; border: 1px solid var(--line);
  }
  /* Everything has to fit one 390px row, or the burger wraps onto its own line
   * and the header reads as two half-empty bars. */
  #site .brand { order: 1; margin-right: auto; font-size: 11px; letter-spacing: 0.5px; gap: 6px; }
  #site .brand .mark { width: 10px; height: 10px; }
  #site .buy { order: 2; }
  #site .play { order: 3; }
  #site .buy, #site .play { padding: 8px 10px; font-size: 10px; letter-spacing: 1px; }
  #site .nav .live, #site .xbtn { display: none; }
  #site .buy .lbl { display: none; }
  #site .hero { padding-inline: 22px; }
  #site .hero .sub { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  #site *, #site *::before, #site *::after { animation: none !important; transition: none !important; }
  #site .band, #site .marquee, #site .foot, #site .page { opacity: 1; transform: none; }
  #site .hero .ascii { display: none; }
}
