/* ───────────────────────────────────────────────────────────────
   Safe Launch — anti-rug launchpad
   Dark, green-accented theme (Geist). Inspired by modern launchpads,
   but its own visual identity.
   ─────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  --background: #050505;
  --surface: #0b0b0d;
  --surface-2: #101013;
  --foreground: #ececed;
  --muted: #8a8a90;
  --border: #1c1c20;
  --border-soft: #161619;
  --accent: #6366f1;
  --accent-2: #818cf8;
  --safe: #34d399;
  --safe-2: #4ade9f;
  --safe-glow: rgba(52, 211, 153, 0.14);
  --ok: #06b76a;
  --err: #f0616d;
  --err-soft: rgba(240, 97, 109, 0.12);
  --radius: 0.7rem;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'Geist', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

.grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, black 15%, transparent 75%);
}
.glow-orb {
  position: fixed; top: -300px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, var(--safe-glow) 0%, transparent 68%);
}

.wrap { position: relative; z-index: 1; max-width: 1536px; margin: 0 auto; padding: 18px 32px 80px; }
@media (max-width: 640px){ .wrap { padding: 14px 16px 64px; } }
.col { max-width: 660px; margin: 0 auto; }

/* ── Topbar ─────────────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 0; margin-bottom: 28px; flex-wrap: wrap;
  background: rgba(5,5,5,0.72); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.brand { display: flex; align-items: center; gap: 11px; background: none; border: none; padding: 0; cursor: pointer; color: inherit; font-family: inherit; }
.brand .mark {
  width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 10px;
  display: grid; place-items: center; background: var(--surface); box-shadow: 0 0 26px var(--safe-glow);
}
.brand .mark svg { width: 21px; height: 21px; }
.brand-text { text-align: left; }
.brand-text h1 { font-size: 15px; font-weight: 600; margin: 0; letter-spacing: -0.01em; }
.brand-text p { font-size: 11px; color: var(--muted); margin: 1px 0 0; }

.nav-tabs { flex-wrap: wrap; }
@media (max-width: 760px){
  .topbar { margin-bottom: 22px; }
  .nav-tabs { order: 3; flex-basis: 100%; justify-content: center; }
  #connectBtn { order: 2; }
}

/* ── Tabs (nav, board sort, swap dir) ───────────────────────────── */
.tabs { display: inline-flex; gap: 4px; border: 1px solid var(--border); border-radius: var(--radius); padding: 3px; background: var(--surface); }
.tab { border: none; background: transparent; color: var(--muted); cursor: pointer; font-family: inherit; font-size: 12.5px; font-weight: 500; padding: 6px 13px; border-radius: 8px; transition: background 0.18s ease, color 0.18s ease; }
.tab:hover { color: var(--foreground); }
.tab.active { background: var(--surface-2); color: var(--foreground); box-shadow: inset 0 0 0 1px var(--border); }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface);
  color: var(--foreground); padding: 0.62rem 1.1rem; font-size: 13.5px; font-weight: 500;
  font-family: inherit; cursor: pointer; white-space: nowrap;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, transform 0.1s ease;
}
.btn:hover:not(:disabled){ border-color: rgba(255,255,255,0.22); }
.btn:active:not(:disabled){ transform: translateY(1px); }
.btn:disabled{ opacity: 0.45; cursor: not-allowed; }
.btn.primary { border-color: transparent; background: linear-gradient(180deg, var(--safe-2), var(--safe)); color: #04130d; font-weight: 600; }
.btn.primary:hover:not(:disabled){ box-shadow: 0 6px 26px var(--safe-glow); }
.btn.full { width: 100%; padding: 0.85rem; font-size: 14px; }
.btn.tiny { padding: 6px 11px; font-size: 12px; border-radius: 8px; }
.row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.muted { color: var(--muted); }

/* ── Views ──────────────────────────────────────────────────────── */
.hide { display: none !important; }

/* ── Hero (sub-pages) ───────────────────────────────────────────── */
.hero { margin: 6px 0 22px; }
.hero h2 { font-size: 27px; line-height: 1.12; margin: 0 0 10px; letter-spacing: -0.03em; font-weight: 600; }
.hero p { color: var(--muted); font-size: 14px; margin: 0; max-width: 60ch; line-height: 1.6; }

/* ── Home hero ──────────────────────────────────────────────────── */
.home-hero {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
  margin: 4px 0 22px;
}
.home-hero-text h2 { font-size: 34px; line-height: 1.08; margin: 0 0 10px; letter-spacing: -0.035em; font-weight: 600; }
.home-hero-text .grn { color: var(--safe); }
.home-hero-text p { color: var(--muted); font-size: 14px; margin: 0; max-width: 62ch; line-height: 1.6; }
@media (max-width: 680px){
  .home-hero { flex-direction: column; align-items: stretch; }
  .home-hero-text h2 { font-size: 27px; }
}

/* ── Board toolbar ──────────────────────────────────────────────── */
.board-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.board-toolbar-left { display: flex; align-items: center; gap: 10px; }
.demo-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; color: var(--muted); border: 1px solid var(--border); border-radius: 999px; padding: 4px 10px; }
.demo-badge .dot { background: var(--safe); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.search {
  flex: 1; min-width: 200px; max-width: 320px;
  border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface);
  padding: 0.55rem 0.85rem; font-size: 13px; color: var(--foreground); font-family: inherit; outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.search::placeholder { color: rgba(138,138,144,0.7); }
.search:focus { border-color: rgba(52,211,153,0.5); box-shadow: 0 0 0 3px var(--safe-glow); }

/* ── Token grid + cards ─────────────────────────────────────────── */
.board { min-height: 120px; }
.empty-state { color: var(--muted); font-size: 13px; text-align: center; padding: 48px 0; }
.tgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(196px, 1fr)); gap: 14px; }

.tcard {
  display: flex; flex-direction: column; border: 1px solid var(--border-soft);
  border-radius: 14px; background: var(--surface); overflow: hidden;
  transition: border-color 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
}
.tcard:hover { border-color: rgba(255,255,255,0.14); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.tcard-click {
  display: flex; flex-direction: column; gap: 0; background: none; border: none; padding: 0; margin: 0;
  cursor: pointer; color: inherit; font-family: inherit; text-align: left; width: 100%;
}
.thumb {
  position: relative; width: 100%; aspect-ratio: 1 / 1; background: var(--surface-2);
  display: grid; place-items: center; overflow: hidden;
  font-family: 'Geist Mono', monospace; font-size: 30px; font-weight: 600; color: var(--safe);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb .corner-flag {
  position: absolute; top: 8px; left: 8px; font-size: 10.5px; color: #fff;
  background: rgba(240,97,109,0.92); border-radius: 999px; padding: 2px 8px; font-weight: 600;
}
.meta { display: flex; flex-direction: column; gap: 5px; padding: 11px 12px 4px; min-width: 0; }
.meta .name { font-size: 13.5px; font-weight: 600; display: flex; gap: 7px; align-items: baseline; min-width: 0; }
.meta .name .nm { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.meta .name .sym { color: var(--muted); font-size: 11.5px; font-weight: 500; flex: none; }
.meta .stat-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.meta .mc { font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--safe); }
.meta .age { font-size: 11px; color: var(--muted); flex: none; }
.meta .dev-buy { font-size: 10.5px; color: var(--muted); }
.meta .dev-buy b { color: var(--foreground); font-weight: 600; }

.tcard-foot { display: flex; align-items: center; gap: 7px; padding: 8px 12px 12px; }
.tcard-foot .spacer { flex: 1; }
.tcard-foot .btn.tiny { padding: 5px 10px; }
.rug-flag {
  display: inline-flex; align-items: center; font-size: 10.5px; color: var(--err);
  border: 1px solid rgba(240,97,109,0.3); background: var(--err-soft);
  border-radius: 999px; padding: 2px 8px; white-space: nowrap;
}
.report-btn:hover:not(:disabled){ border-color: rgba(240,97,109,0.45); color: var(--err); }
.report-btn.reported { color: var(--err); border-color: rgba(240,97,109,0.35); opacity: 1; cursor: default; }

/* ── Cards ──────────────────────────────────────────────────────── */
.card {
  border: 1px solid var(--border); background: var(--surface); border-radius: 16px;
  padding: 22px; margin-bottom: 18px; transition: border-color 0.2s ease;
}
.card:hover { border-color: rgba(255,255,255,0.1); }
.card.safe { border-color: rgba(52,211,153,0.22); background: linear-gradient(180deg, rgba(52,211,153,0.04), transparent 60%), var(--surface); }
.card h3 { margin: 0 0 4px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.card .sub { color: var(--muted); font-size: 12.5px; margin: 0 0 18px; line-height: 1.5; }

/* Safety list */
.safety { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.safety li { display: flex; gap: 12px; align-items: flex-start; }
.safety .ic {
  flex: none; width: 21px; height: 21px; border-radius: 7px; display: grid; place-items: center;
  background: var(--safe-glow); color: var(--safe); font-size: 12px; margin-top: 1px;
}
.safety .t { font-size: 13px; font-weight: 500; }
.safety .d { font-size: 12px; color: var(--muted); margin-top: 2px; line-height: 1.5; }
.safety li > div { min-width: 0; }

/* Wallet bar */
.wallet-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.wallet-meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.wallet-meta .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.wallet-meta .addr { font-family: 'Geist Mono', monospace; font-size: 13px; word-break: break-all; }
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--border); color: var(--muted); }
.badge.ok { color: var(--safe); border-color: rgba(52,211,153,0.3); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ── Forms ──────────────────────────────────────────────────────── */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
@media (max-width: 560px){ .grid2, .grid3 { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.field label { font-size: 12px; color: var(--foreground); font-weight: 500; }
.field .hint { font-size: 11px; color: var(--muted); line-height: 1.45; }

input, textarea, select {
  width: 100%; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--background); padding: 0.7rem 0.85rem; font-size: 13.5px;
  color: var(--foreground); font-family: inherit; outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
textarea { resize: vertical; min-height: 76px; }
input::placeholder, textarea::placeholder { color: rgba(138,138,144,0.6); }
input:focus, textarea:focus, select:focus { border-color: rgba(52,211,153,0.5); box-shadow: 0 0 0 3px var(--safe-glow); }
input[type=file]{ padding: 0.55rem 0.6rem; font-size: 12.5px; cursor: pointer; }
input[type=file]::file-selector-button{
  background: var(--surface); color: var(--foreground); border: 1px solid var(--border);
  border-radius: 7px; padding: 5px 10px; margin-right: 10px; cursor: pointer; font-family: inherit; font-size: 12px;
}

/* Launch fee note */
.fee-note {
  display: flex; align-items: center; gap: 10px; margin: 4px 0 16px;
  border: 1px solid rgba(52,211,153,0.22); background: var(--safe-glow);
  border-radius: var(--radius); padding: 11px 13px; font-size: 12px; color: var(--muted); line-height: 1.45;
}
.fee-note .fee-amt {
  flex: none; font-family: 'Geist Mono', monospace; font-weight: 600; font-size: 12.5px;
  color: var(--safe); border: 1px solid rgba(52,211,153,0.3); border-radius: 7px; padding: 3px 8px;
}

/* ── Log ────────────────────────────────────────────────────────── */
.log {
  margin-top: 18px; border: 1px solid var(--border); border-radius: var(--radius);
  background: #060607; padding: 14px; font-family: 'Geist Mono', monospace;
  font-size: 12px; line-height: 1.7; max-height: 300px; overflow-y: auto;
  white-space: pre-wrap; word-break: break-word; display: none;
}
.log.show { display: block; }
.log .l-info { color: var(--muted); }
.log .l-ok { color: var(--safe); }
.log .l-err { color: var(--err); }
.log a { color: var(--accent-2); }

/* ── Avatar (swap token chip) ───────────────────────────────────── */
.avatar {
  width: 38px; height: 38px; border-radius: 10px; flex: none; border: 1px solid var(--border);
  background: var(--surface-2); object-fit: cover; display: grid; place-items: center;
  font-family: 'Geist Mono', monospace; font-size: 12px; font-weight: 600; color: var(--safe); overflow: hidden;
}

/* ── Swap panel ─────────────────────────────────────────────────── */
.swap-token {
  display: flex; align-items: center; gap: 12px; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 12px; background: var(--background); margin-bottom: 14px;
}
.swap-token .info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.swap-token .name { font-size: 13px; font-weight: 600; display: flex; gap: 7px; align-items: baseline; }
.swap-token .name .sym { color: var(--muted); font-size: 11.5px; font-weight: 500; }
.swap-token .mc { font-family: 'Geist Mono', monospace; font-size: 11.5px; color: var(--accent-2); text-decoration: none; }
/* Swap token picker */
.swap-pick { margin-bottom: 16px; }
.swap-pick-label { font-size: 12px; color: var(--foreground); font-weight: 500; margin-bottom: 8px; }
.swap-pick-list { display: flex; flex-wrap: wrap; gap: 8px; }
.pick-empty { font-size: 12px; color: var(--muted); }
.pick-chip {
  display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border);
  background: var(--surface); border-radius: 999px; padding: 5px 13px 5px 5px; cursor: pointer;
  color: var(--foreground); font-family: inherit; transition: border-color 0.18s ease, transform 0.1s ease;
}
.pick-chip:hover { border-color: rgba(52,211,153,0.5); }
.pick-chip:active { transform: translateY(1px); }
.pick-chip .avatar { width: 26px; height: 26px; border-radius: 50%; font-size: 10px; }
.pick-info { display: flex; flex-direction: column; gap: 1px; line-height: 1.15; text-align: left; }
.pick-sym { font-size: 12px; font-weight: 600; }
.pick-mc { font-size: 10px; color: var(--muted); font-family: 'Geist Mono', monospace; }

.swap-dir { display: inline-flex; margin-bottom: 14px; }
.swap-quote {
  border: 1px solid var(--border); border-radius: var(--radius); background: #060607;
  padding: 12px 14px; font-size: 13px; color: var(--foreground); margin-bottom: 14px; line-height: 1.5;
}
.swap-quote b { color: var(--safe); }
.swap-quote .muted { font-size: 12px; }

/* ── Fees ───────────────────────────────────────────────────────── */
.fees { display: grid; gap: 10px; }
.fee-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  border: 1px solid var(--border); border-radius: var(--radius); padding: 13px 14px; background: var(--background);
}
.fee-k { min-width: 0; }
.fee-t { font-size: 13px; font-weight: 600; }
.fee-d { font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.5; }
.fee-v {
  flex: none; font-family: 'Geist Mono', monospace; font-size: 16px; font-weight: 600; color: var(--safe);
}

/* ── About ──────────────────────────────────────────────────────── */
.prose { color: var(--muted); font-size: 13.5px; line-height: 1.75; margin: 0; }
.steps { margin: 0; padding-left: 18px; display: grid; gap: 11px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.steps b { color: var(--foreground); }

/* ── Token detail page ──────────────────────────────────────────── */
.back-link {
  background: none; border: none; color: var(--muted); font-family: inherit; font-size: 13px;
  cursor: pointer; padding: 4px 0; margin-bottom: 14px;
}
.back-link:hover { color: var(--foreground); }

.token-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 20px; align-items: start; }
@media (max-width: 900px){ .token-layout { grid-template-columns: 1fr; } }

.mono { font-family: 'Geist Mono', monospace; }
.chg.up, .chg-v.up, .h-pct.up { color: var(--safe); }
.chg.down, .chg-v.down { color: var(--err); }

/* Header */
.token-head { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.token-avatar .avatar { width: 56px; height: 56px; border-radius: 14px; font-size: 16px; }
.token-id { min-width: 0; }
.token-title { display: flex; align-items: center; gap: 9px; font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.token-title .ticker { font-size: 12px; font-weight: 600; color: var(--safe); background: var(--safe-glow); border-radius: 7px; padding: 2px 8px; }
.token-title .copy { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 13px; padding: 2px; }
.token-title .copy:hover { color: var(--foreground); }
.token-desc { color: var(--muted); font-size: 13px; margin-top: 3px; }
.token-social { color: var(--muted); font-size: 12px; margin-top: 4px; }
.token-social a { color: var(--accent-2); text-decoration: none; }

/* Price block */
.token-price { margin-bottom: 14px; }
.token-mc-big { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.token-priceline { margin-top: 8px; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.token-priceline .chg { font-weight: 600; }
.dotsep { color: var(--border); }

/* Chart */
.token-chart { height: 220px; border: 1px solid var(--border-soft); border-radius: 14px; background: var(--surface); overflow: hidden; margin-bottom: 12px; }
.token-chart .spark { width: 100%; height: 100%; display: block; }
.chart-tabs { display: flex; gap: 2px; width: 100%; margin-bottom: 18px; }
.chart-tabs .tab { flex: 1; text-align: center; }

/* Change grid */
.chg-grid, .stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
@media (max-width: 560px){ .chg-grid, .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.chg-cell, .stat-cell { border: 1px solid var(--border-soft); border-radius: 12px; background: var(--surface); padding: 13px 14px; }
.chg-k, .stat-k { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.chg-v { font-family: 'Geist Mono', monospace; font-size: 15px; font-weight: 600; margin-top: 5px; }
.stat-v { font-size: 17px; font-weight: 700; margin-top: 5px; }

/* Bonding */
.bonding { border: 1px solid var(--border-soft); border-radius: 12px; background: var(--surface); padding: 14px; margin-bottom: 14px; }
.bonding-head { display: flex; justify-content: space-between; font-size: 11px; letter-spacing: 0.05em; color: var(--muted); text-transform: uppercase; margin-bottom: 10px; }
.bonding-head #tkBondPct { color: var(--safe); font-family: 'Geist Mono', monospace; }
.bonding-bar { height: 8px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.bonding-fill { height: 100%; background: linear-gradient(90deg, var(--safe-2), var(--safe)); border-radius: 999px; transition: width 0.5s ease; }

.token-flags { display: flex; align-items: center; gap: 10px; }
.token-flags .spacer { flex: 1; }

/* Trade box */
.trade-box { padding: 16px; position: sticky; top: 84px; }
.trade-dir { width: 100%; margin-bottom: 14px; }
.trade-dir .tab { flex: 1; font-size: 13.5px; padding: 8px; }
.trade-dir .tab.active[data-tdir="buy"] { background: var(--safe); color: #04130d; box-shadow: none; }
.trade-dir .tab.active[data-tdir="sell"] { background: var(--err); color: #1a0608; box-shadow: none; }
.trade-field { border: 1px solid var(--border); border-radius: var(--radius); background: var(--background); padding: 11px 13px; margin-bottom: 10px; }
.tf-top { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.tf-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tf-row input { border: none; background: none; padding: 0; font-size: 22px; font-weight: 600; }
.tf-row input:focus { box-shadow: none; }
.tf-out { font-size: 22px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; }
.tf-cur { flex: none; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; border: 1px solid var(--border); border-radius: 999px; padding: 5px 11px; }
.quick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-bottom: 12px; }
.quick button { border: 1px solid var(--border); background: var(--surface); color: var(--foreground); border-radius: 8px; padding: 7px 0; font-family: inherit; font-size: 12px; cursor: pointer; transition: border-color 0.18s ease; }
.quick button:hover { border-color: rgba(255,255,255,0.25); }
.trade-meta { font-size: 12px; color: var(--muted); margin: 12px 0; display: grid; gap: 7px; }
.tm-row { display: flex; justify-content: space-between; }
.tm-row .grn { color: var(--safe); }
.trade-note { font-size: 11.5px; color: var(--muted); margin-top: 8px; text-align: center; display: none; }
.trade-note.show { display: block; }

/* Holders */
.holders-box h3 { margin-bottom: 12px; }
.holders { display: grid; gap: 9px; }
.holder { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.h-rank { width: 16px; flex: none; color: var(--muted); font-family: 'Geist Mono', monospace; text-align: right; }
.h-addr { flex: 1; min-width: 0; font-family: 'Geist Mono', monospace; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.h-addr.pool { color: var(--muted); font-family: 'Geist', sans-serif; font-size: 11.5px; }
.h-pct { flex: none; font-family: 'Geist Mono', monospace; color: var(--foreground); }

footer.site { text-align: center; color: var(--muted); font-size: 12px; margin-top: 40px; line-height: 1.6; }
