/* ═══════════════════════════════════════════════════════════════
   CodeBet — Purple Night palette (v2)
   ═══════════════════════════════════════════════════════════════ */
:root {
  --ground: #0f0918;
  --surface: #1e1530;
  --surface-2: #2a1f42;
  --surface-3: #3a2e52;
  --border: #3a2e52;
  --border-soft: #2a1f42;
  --text: #ffffff;
  --text-2: #c5c5d8;
  --muted: #8b8b9e;
  --purple: #9333ea;
  --purple-light: #a855f7;
  --purple-dark: #7e22ce;
  --purple-glow: rgba(147, 51, 234, 0.18);
  --gold: #ffb800;
  --gold-dim: #e5a700;
  --green: #22c55e;
  --red: #ef4444;
  --blue: #3b82f6;
  --win: #22c55e;
  --loss: #ef4444;
  --moncash: #ff6600;
  --natcash: #00a651;
  --shadow: 0 8px 24px -8px rgba(147, 51, 234, .25);
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, sans-serif;
  --serif: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, sans-serif;
  --mono: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  --w-content: 780px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--ground); color: var(--text); font-family: var(--sans); line-height: 1.55; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--purple-light); }
img, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }

/* ─── Header ─── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 16px;
  padding: 12px 20px;
  background: rgba(10, 13, 30, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-style: italic; font-weight: 900; }
.brand-mark { width: 30px; height: 30px; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: white; border-radius: 8px; display: grid; place-items: center; font-family: var(--serif); font-style: italic; font-weight: 900; font-size: 18px; }
.brand-mark.large { width: 48px; height: 48px; font-size: 26px; border-radius: 12px; margin-bottom: 16px; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: white; }
.brand-name { font-size: 18px; letter-spacing: -0.01em; color: var(--text); }
.site-nav { display: flex; gap: 4px; margin-left: 20px; flex-wrap: wrap; }
.nav-link { padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--text-2); }
.nav-link:hover { background: var(--surface); color: var(--text); }
.nav-link[data-active] { background: var(--surface); color: var(--purple-light); }
.nav-link.vip { color: var(--gold); }
.site-actions { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.wallet-chip { display: flex; align-items: center; gap: 6px; padding: 6px 12px; background: var(--surface); border: 1px solid var(--border-soft); border-radius: 20px; font-size: 13px; font-family: var(--mono); font-variant-numeric: tabular-nums; }
.avatar-chip { width: 36px; height: 36px; border-radius: 50%; background: var(--purple); border: 1px solid var(--purple-dark); display: grid; place-items: center; font-weight: 700; color: white; }

.btn-primary, .btn-outline { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 18px; border-radius: 8px; font-weight: 700; font-size: 14px; cursor: pointer; border: none; text-decoration: none; transition: all 0.15s; }
.btn-primary { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: white; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(224,179,101,.5); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--purple-light); color: var(--purple-light); }
.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 4px 10px; font-size: 12px; border-radius: 5px; background: var(--surface-2); color: var(--text-2); border: 1px solid var(--border-soft); cursor: pointer; text-decoration: none; }
.btn-sm.win { background: rgba(74,222,128,.15); color: var(--win); border-color: var(--win); }
.btn-sm.loss { background: rgba(248,113,113,.15); color: var(--loss); border-color: var(--loss); }

.site-main { max-width: var(--w-content); margin: 0 auto; padding: 20px; }

/* ─── Flash ─── */
.flash-stack { max-width: var(--w-content); margin: 12px auto 0; padding: 0 20px; }
.flash { padding: 12px 16px; border-radius: 8px; margin-bottom: 8px; font-size: 14px; border: 1px solid var(--border-soft); }
.flash-success { background: rgba(74,222,128,.12); color: var(--win); border-color: var(--win); }
.flash-error { background: rgba(248,113,113,.12); color: var(--loss); border-color: var(--loss); }

/* ─── Feed / chat ─── */
.feed-wrap { display: flex; flex-direction: column; gap: 12px; }

/* Promo slider */
.promo-slider { position: relative; height: 160px; border-radius: 14px; overflow: hidden; background: var(--surface); border: 1px solid var(--border-soft); }
.promo-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .4s; background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: 16px 20px; }
.promo-slide.active { opacity: 1; }
.promo-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,13,30,.85), transparent); }
.promo-content { position: relative; z-index: 1; }
.promo-title { font-family: var(--serif); font-style: italic; font-weight: 900; font-size: 22px; letter-spacing: -0.01em; }
.promo-sub { font-size: 12px; color: var(--text-2); margin-top: 2px; }
.promo-cta { display: inline-flex; margin-top: 8px; font-size: 12px; font-weight: 700; color: var(--gold); }
.slider-dots { position: absolute; bottom: 10px; right: 12px; display: flex; gap: 4px; z-index: 2; }
.slider-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; padding: 0; }
.slider-dot.active { background: var(--purple); width: 18px; border-radius: 3px; }

/* Stat bar */
.stat-row { display: flex; gap: 8px; padding: 12px; background: var(--surface); border: 1px solid var(--border-soft); border-radius: 12px; }
.stat { flex: 1; text-align: center; }
.stat-num { display: block; font-family: var(--serif); font-style: italic; font-weight: 900; font-size: 22px; color: var(--gold); }
.stat-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 600; }

/* Chip row */
.chip-row { display: flex; gap: 6px; overflow-x: auto; padding: 4px 0; }
.chip { flex: 0 0 auto; padding: 6px 12px; border-radius: 20px; background: var(--surface); border: 1px solid var(--border-soft); font-size: 13px; color: var(--text-2); white-space: nowrap; }
.chip:hover { color: var(--text); border-color: var(--purple); }
.chip.active { background: var(--purple); color: white; border-color: var(--purple); font-weight: 700; }

/* Tip cards */
.chat-feed { display: flex; flex-direction: column; gap: 10px; }
.tip-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: 14px; padding: 14px 16px; position: relative; overflow: hidden; }
.tip-head { display: flex; align-items: center; gap: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.tip-league { flex: 1; }
.tip-time { font-family: var(--mono); }
.tip-badge { padding: 2px 8px; border-radius: 4px; font-weight: 700; }
.tip-badge.win { background: rgba(74,222,128,.15); color: var(--win); }
.tip-badge.loss { background: rgba(248,113,113,.15); color: var(--loss); }
.tip-badge.free { background: rgba(224,179,101,.15); color: var(--gold); }
.tip-teams { font-weight: 700; font-size: 16px; margin-bottom: 10px; }
.tip-details { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 6px 12px; padding: 10px 12px; background: var(--surface-2); border-radius: 8px; margin-bottom: 8px; font-size: 12px; }
.tip-details > div { display: flex; justify-content: space-between; gap: 8px; }
.tip-details .lbl { color: var(--muted); }
.tip-details .val { font-weight: 700; }
.tip-details .val.mono, .mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.tip-conf { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 12px; color: var(--text-2); }
.tip-conf .lbl { min-width: 70px; }
.conf-bar { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.conf-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); }
.tip-code-row { display: flex; align-items: center; gap: 8px; padding-top: 8px; border-top: 1px dashed var(--border); font-size: 13px; }
.tip-code-row .lbl { text-transform: uppercase; font-size: 10px; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; }
.tip-code-row .code { flex: 1; font-family: var(--mono); color: var(--gold); font-weight: 700; letter-spacing: 0.08em; }
.btn-copy { padding: 4px 10px; border-radius: 5px; background: var(--surface-2); border: 1px solid var(--border-soft); color: var(--text-2); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; cursor: pointer; }
.btn-copy:hover { color: var(--purple-light); }

/* Locked */
.tip-card.locked { border-color: var(--gold-dim); }
.tip-card.locked .tip-teams,
.tip-card.locked .tip-details,
.tip-card.locked .tip-conf,
.tip-card.locked .tip-code-row { filter: blur(6px); user-select: none; pointer-events: none; }
.lock-overlay { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2; background: linear-gradient(180deg, transparent, var(--surface) 30%); padding: 40px 8px 4px; display: flex; flex-direction: column; gap: 6px; }
.unlock-btn { background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: var(--ground); border: none; padding: 12px; border-radius: 10px; font-weight: 800; font-size: 14px; cursor: pointer; }
.unlock-btn:hover { transform: translateY(-1px); }
.vip-cta { text-align: center; font-size: 12px; color: var(--muted); padding: 4px; }
.vip-cta strong { color: var(--gold); }

/* ─── Auth ─── */
.auth-wrap { max-width: 400px; margin: 40px auto; padding: 0 20px; }
.auth-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: 16px; padding: 32px 28px; }
.auth-brand { text-align: center; margin-bottom: 24px; }
.auth-brand h1 { margin: 0 0 6px; font-family: var(--serif); font-style: italic; font-weight: 900; font-size: 28px; }
.auth-brand p { color: var(--muted); font-size: 14px; margin: 0; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-info { color: var(--text-2); font-size: 14px; margin: 0; }
.auth-tip { color: var(--muted); font-size: 12px; text-align: center; margin-top: 8px; }
.input-label { display: flex; flex-direction: column; gap: 6px; }
.input-label span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; color: var(--muted); }
.input { padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; background: var(--ground); color: var(--text); font-size: 15px; }
.input:focus { border-color: var(--purple); outline: none; }
.input-otp { font-family: var(--mono); font-size: 22px; text-align: center; letter-spacing: 0.4em; }

/* ─── VIP page ─── */
.vip-wrap { padding: 20px 0; }
.section-head { margin-bottom: 32px; }
.section-head.center { text-align: center; }
.eyebrow { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.section-head h1 { font-family: var(--serif); font-style: italic; font-weight: 900; font-size: 36px; letter-spacing: -0.02em; margin: 8px 0; }
.section-head .lede { color: var(--text-2); }
.tier-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.tier { background: var(--surface); border: 1px solid var(--border-soft); border-radius: 14px; padding: 20px; display: flex; flex-direction: column; gap: 10px; position: relative; }
.tier.featured { border-color: var(--gold); background: linear-gradient(180deg, var(--surface), var(--surface-2)); }
.featured-tag { position: absolute; top: -8px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--ground); padding: 3px 10px; border-radius: 10px; font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.tier-name { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); font-weight: 700; }
.tier-price { font-family: var(--serif); font-style: italic; font-weight: 900; font-size: 30px; }
.tier-price .per { font-family: var(--sans); font-style: normal; font-weight: 500; font-size: 12px; color: var(--muted); margin-left: 4px; }
.tier-desc { font-size: 13px; color: var(--text-2); min-height: 36px; }
.tier-features { list-style: none; padding: 0; margin: 8px 0 12px; display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: var(--text-2); }
.tier-features li::before { content: "• "; color: var(--gold); }

/* ─── Wallet ─── */
.wallet-wrap { padding: 20px 0; }
.wallet-summary { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-bottom: 24px; }
.balance-card, .vip-status-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: 14px; padding: 20px; }
.balance-card .label, .vip-status-card .label { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 8px; }
.balance { font-family: var(--serif); font-style: italic; font-weight: 900; font-size: 36px; color: var(--gold); margin-bottom: 12px; }
.status-line { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.txn-list { display: flex; flex-direction: column; gap: 6px; }
.txn-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; background: var(--surface); border-radius: 8px; }
.txn-row.credit { border-left: 3px solid var(--win); }
.txn-row.debit { border-left: 3px solid var(--loss); }
.txn-reason { font-weight: 600; }
.txn-date { font-size: 11px; color: var(--muted); font-family: var(--mono); }
.txn-amount { font-family: var(--mono); font-weight: 700; }
.txn-row.credit .txn-amount { color: var(--win); }
.txn-row.debit .txn-amount { color: var(--loss); }
.wallet-footer { margin-top: 24px; text-align: center; }

/* ─── Live ─── */
.live-wrap { padding: 20px 0; }
.section-sub { font-family: var(--serif); font-style: italic; font-weight: 900; font-size: 22px; margin: 24px 0 12px; }
.match-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.match-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: 12px; padding: 14px; }
.match-card.live { border-color: var(--loss); }
.match-league { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 700; margin-bottom: 8px; }
.match-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.team-logo { width: 24px; height: 24px; }
.team-name { flex: 1; }
.score { font-family: var(--mono); font-weight: 800; font-size: 20px; }
.match-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border-soft); font-size: 12px; }
.live-badge { color: var(--loss); font-weight: 700; }
.match-list { display: flex; flex-direction: column; gap: 4px; }
.match-line { display: grid; grid-template-columns: 60px 1fr auto; gap: 12px; padding: 8px 12px; background: var(--surface); border-radius: 6px; font-size: 13px; align-items: center; }
.match-line.finished { opacity: 0.7; }
.match-time { color: var(--muted); }
.match-league-sm { font-size: 10px; text-transform: uppercase; color: var(--muted); }

/* ─── Videos (Reels) ─── */
.videos-wrap { padding: 20px 0; }
.reels-grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.reel { position: relative; aspect-ratio: 9/16; background: var(--surface); border-radius: 12px; overflow: hidden; cursor: pointer; }
.reel video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px; background: linear-gradient(0deg, rgba(0,0,0,.85), transparent); color: #fff; }
.reel-title { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.reel-match { font-size: 11px; color: var(--gold); }
.reel-meta { font-size: 10px; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ─── Empty state ─── */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state.small { padding: 20px; }
.empty-icon { font-size: 48px; margin-bottom: 12px; }
.empty-state h3 { font-family: var(--serif); font-style: italic; font-weight: 900; font-size: 20px; margin: 0 0 6px; }
.empty-state p { color: var(--muted); margin: 0; }

/* ─── Admin ─── */
.admin-wrap { display: grid; grid-template-columns: 200px 1fr; gap: 20px; max-width: 1400px; margin: 0 auto; padding: 20px; }
@media (max-width: 800px) { .admin-wrap { grid-template-columns: 1fr; } }
.admin-nav { display: flex; flex-direction: column; gap: 2px; padding: 12px; background: var(--surface); border: 1px solid var(--border-soft); border-radius: 12px; align-self: start; }
.admin-nav a { padding: 10px 14px; border-radius: 8px; font-size: 14px; color: var(--text-2); }
.admin-nav a:hover { background: var(--surface-2); color: var(--text); }
.admin-nav a.active { background: var(--surface-2); color: var(--gold); font-weight: 700; }
.admin-main { min-width: 0; }
.admin-main h1 { font-family: var(--serif); font-style: italic; font-weight: 900; font-size: 32px; margin: 0 0 20px; }
.admin-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.stat-cards { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); margin-bottom: 32px; }
.stat-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: 12px; padding: 16px; }
.stat-card .lbl { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.stat-card .num { font-family: var(--serif); font-style: italic; font-weight: 900; font-size: 28px; letter-spacing: -0.02em; }
.stat-card .num.gold { color: var(--gold); }
.stat-card .num.win { color: var(--win); }
.admin-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 900px) { .admin-grid { grid-template-columns: 1fr 1fr; } }
.admin-grid h2 { font-family: var(--serif); font-style: italic; font-weight: 900; font-size: 20px; margin: 0 0 12px; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border-soft); border-radius: 12px; overflow: hidden; font-size: 13px; }
.admin-table th, .admin-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border-soft); }
.admin-table th { background: var(--surface-2); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; }
.admin-table tr:last-child td { border-bottom: none; }
.muted, .muted-sm { color: var(--muted); }
.muted-sm { font-size: 11px; }
.status-pill { display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; background: var(--surface-2); color: var(--text-2); }
.status-pill.active { background: rgba(91,157,255,.15); color: var(--blue); }
.status-pill.won, .status-pill.completed { background: rgba(74,222,128,.15); color: var(--win); }
.status-pill.lost, .status-pill.failed { background: rgba(248,113,113,.15); color: var(--loss); }
.status-pill.pending { background: rgba(224,179,101,.15); color: var(--gold); }
.status-pill.admin { background: rgba(224,179,101,.2); color: var(--gold); }
.tag-free { display: inline-block; padding: 1px 6px; background: rgba(224,179,101,.15); color: var(--gold); border-radius: 3px; font-size: 9px; text-transform: uppercase; font-weight: 700; }
.vip-badge { display: inline-block; padding: 2px 8px; background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: var(--ground); border-radius: 10px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.actions { white-space: nowrap; display: flex; gap: 4px; align-items: center; }

.admin-form { background: var(--surface); border: 1px solid var(--border-soft); border-radius: 12px; padding: 20px; }
.admin-form fieldset { border: 1px solid var(--border-soft); border-radius: 8px; padding: 16px; margin-bottom: 16px; }
.admin-form legend { padding: 0 8px; font-weight: 700; color: var(--gold); }
.form-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.form-grid label { display: flex; flex-direction: column; gap: 4px; font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.form-grid input, .form-grid select, .form-grid textarea { padding: 10px 12px; border: 1px solid var(--border); border-radius: 6px; background: var(--ground); color: var(--text); font-size: 14px; text-transform: none; letter-spacing: normal; }
.form-grid input:focus, .form-grid select:focus { border-color: var(--gold); outline: none; }
.checkbox-label { flex-direction: row !important; align-items: center; gap: 8px; text-transform: none !important; letter-spacing: normal !important; }
.form-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border-soft); }
.admin-search { display: flex; gap: 8px; margin-bottom: 16px; }
.admin-search input { flex: 1; padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); color: var(--text); }
.vip-grant-menu { position: absolute; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 6px; display: flex; flex-direction: column; gap: 4px; z-index: 10; }

/* ─── Footer ─── */
.site-footer { margin-top: 60px; padding: 40px 20px 20px; border-top: 1px solid var(--border-soft); background: var(--surface); }
.footer-grid { max-width: var(--w-content); margin: 0 auto; display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
.footer-grid a { display: block; padding: 4px 0; color: var(--text-2); font-size: 14px; }
.footer-grid p { color: var(--muted); font-size: 13px; margin-top: 4px; }
.disclaimer { padding: 12px; background: rgba(248,113,113,.08); border: 1px solid rgba(248,113,113,.2); border-left: 3px solid var(--loss); border-radius: 6px; font-size: 12px; color: var(--text-2); }
.footer-bottom { max-width: var(--w-content); margin: 20px auto 0; padding-top: 16px; border-top: 1px solid var(--border-soft); text-align: center; font-size: 12px; color: var(--muted); }

/* Copy feedback */
@keyframes fadeout { from { opacity: 1 } to { opacity: 0 } }
.copied { animation: fadeout 2s forwards; color: var(--win) !important; }
