/* ══════════════════════════════════════════
   RoadTo10M  ·  Refined & Modern
   Fonts: Nunito (headings) + Space Mono (data)
   Palette: Slate / Indigo / Amber
   ══════════════════════════════════════════ */

:root {
  --yellow:    #E8A23E;
  --yellow-d:  #D4912F;
  --yellow-bg: #FDF6EC;
  --blue:      #5B6CF0;
  --blue-l:    #7C8AF5;
  --sky:       #ECEFFE;
  --white:     #FFFFFF;
  --bg:        #F8F9FC;
  --card:      #FFFFFF;
  --text:      #1A1D2E;
  --t2:        #5A5F72;
  --t3:        #9BA1B0;
  --border:    #ECEEF2;
  --green:     #2DA67E;
  --green-bg:  #EDF8F3;
  --red:       #E85D5D;
  --red-bg:    #FDF0F0;
  --purple:    #7C5CDB;
  --purple-bg: #F1EEFB;
  --gold:      #D4912F;
  --pink:      #D96A8F;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 2px 16px rgba(26,29,46,0.05), 0 1px 3px rgba(26,29,46,0.04);
  --shadow-lg: 0 4px 32px rgba(26,29,46,0.07), 0 1px 4px rgba(26,29,46,0.04);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: -10%;
  z-index: -2;
  background:
    radial-gradient(ellipse 55vw 50vh at 5% 8%,   rgba(91,108,240,0.10), transparent 70%),
    radial-gradient(ellipse 45vw 45vh at 92% 5%,   rgba(124,92,219,0.08), transparent 70%),
    radial-gradient(ellipse 50vw 50vh at 85% 75%,  rgba(232,162,62,0.08), transparent 70%),
    radial-gradient(ellipse 40vw 40vh at 8% 88%,   rgba(45,166,126,0.06), transparent 70%),
    radial-gradient(ellipse 30vw 30vh at 50% 45%,  rgba(217,106,143,0.05), transparent 70%);
  animation: bg-drift 20s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle, rgba(91,108,240,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 20%, transparent 70%);
}

@keyframes bg-drift {
  0%   { transform: scale(1)    translate(0, 0); }
  50%  { transform: scale(1.08) translate(-20px, 12px); }
  100% { transform: scale(1)    translate(14px, -10px); }
}

.page {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 24px 100px;
  position: relative;
}

/* ═══ HERO ═══ */
.hero {
  text-align: center;
  padding: 12px 0 36px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-badge {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-badge--live {
  color: var(--red);
  background: var(--red-bg);
  border: 1px solid rgba(232,93,93,0.15);
}
.hb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: dot-blink 1.5s ease-in-out infinite;
}
@keyframes dot-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.3; transform: scale(0.7); }
}
.hero-badge--year {
  color: var(--blue);
  background: var(--sky);
  border: 1px solid rgba(91,108,240,0.12);
}

.hero-title {
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.title-line1 {
  display: flex;
  align-items: baseline;
  gap: 0.2em;
}
.title-line2 {
  display: flex;
  align-items: baseline;
  gap: 0.02em;
}
.title-road { color: var(--text); }
.title-to   { font-weight: 600; color: var(--t3); font-size: 0.55em; }
.title-dollar {
  color: var(--gold);
  font-size: 0.85em;
}
.title-10m {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-bear {
  display: inline-flex;
  align-items: center;
  animation: bear-bounce 2s ease-in-out infinite;
}
.bear-ico { display: block; }
.bear-ico--hero { width: clamp(2rem, 6vw, 3.5rem); height: clamp(2rem, 6vw, 3.5rem); }
.bear-ico--footer { width: 22px; height: 22px; }
@keyframes bear-bounce {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-8px) rotate(3deg); }
}

.hero-desc {
  max-width: 540px;
  margin: 0 auto;
}
.hero-desc-main {
  font-size: 15px; font-weight: 600;
  color: var(--t2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.hero-desc-main strong {
  color: var(--blue);
  font-weight: 800;
}

.hero-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-pill {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  border: 1.5px solid;
  transition: transform 0.15s;
}
.hero-pill:hover { transform: translateY(-1px); }
.hero-pill--red {
  color: var(--red);
  border-color: rgba(232,93,93,0.2);
  background: rgba(232,93,93,0.05);
}
.hero-pill--blue {
  color: var(--blue);
  border-color: rgba(91,108,240,0.18);
  background: rgba(91,108,240,0.05);
}
.hero-pill--green {
  color: var(--green);
  border-color: rgba(45,166,126,0.2);
  background: rgba(45,166,126,0.05);
}

/* ═══ DASHBOARD CARD ═══ */
.dash-card {
  background: var(--card);
  border-radius: 20px;
  padding: 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  margin-bottom: 36px;
  overflow: hidden;
}

.dc-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 24px 24px 18px;
  background: linear-gradient(135deg, #F8F9FE 0%, #F2F3FB 50%, #FBF7F1 100%);
  border-bottom: 1px solid var(--border);
}
.dc-hero-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dc-level {
  font-size: 10px; font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: linear-gradient(135deg, #FDF6EC 0%, #FAF0DE 100%);
  border: 1px solid rgba(212,145,47,0.18);
  padding: 3px 10px;
  border-radius: 6px;
  align-self: flex-start;
  margin-bottom: 6px;
}
.dc-earned {
  font-family: 'Space Mono', monospace;
  font-size: 1.75rem; font-weight: 700;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.dc-earned-lbl {
  font-size: 11px; font-weight: 700;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dc-hero-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.dc-pct {
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem; font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.dc-pct-lbl {
  font-size: 10px; font-weight: 700;
  color: var(--t3);
  letter-spacing: 0.02em;
}

.dc-bar-wrap {
  padding: 16px 24px;
}
.dc-bar {
  height: 12px;
  background: linear-gradient(90deg, var(--border) 0%, #E9ECEF 100%);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.04);
}
.dc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #E8A23E, #D4912F, #C47F25);
  border-radius: 99px;
  min-width: 6px;
  transition: width 1.6s cubic-bezier(.22,.68,0,1.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(212,145,47,0.25);
}
.dc-bar-shine {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  animation: bar-shine 2.5s infinite;
}
@keyframes bar-shine {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.dc-ends {
  display: flex; justify-content: space-between;
  margin-top: 8px;
}
.dc-ends-start {
  font-size: 11px; font-weight: 700;
  color: var(--t3);
}
.dc-ends-goal {
  font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.dc-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.dc-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  transition: background 0.15s;
}
.dc-stat:first-child {
  border-right: 1px solid var(--border);
}
.dc-stat:hover { background: var(--bg); }
.dc-stat-ico {
  width: 32px; height: 32px;
  flex-shrink: 0;
  padding: 6px;
  border-radius: 10px;
}
.dc-stat-body { min-width: 0; }
.dc-stat-val {
  font-family: 'Space Mono', monospace;
  font-size: 14px; font-weight: 700;
  display: block;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.dc-stat-lbl {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-top: 1px;
}

.dc-stat--blue .dc-stat-ico { color: var(--blue); background: rgba(91,108,240,0.08); }
.dc-stat--blue .dc-stat-val { color: var(--blue); }
.dc-stat--blue .dc-stat-lbl { color: var(--blue); opacity: 0.5; }
.dc-stat--purple .dc-stat-ico { color: var(--purple); background: rgba(124,92,219,0.08); }
.dc-stat--purple .dc-stat-val { color: var(--purple); }
.dc-stat--purple .dc-stat-lbl { color: var(--purple); opacity: 0.5; }

/* ═══════════════════════════════════════════
   OKX REFERRAL BANNER
   ═══════════════════════════════════════════ */
.okx-banner {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
  color: #fff;
}

.okx-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #111 50%, #1A1A2E 100%);
  z-index: 0;
}
.okx-grid-line {
  position: absolute; inset: 0;
  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: 36px 36px;
}
.okx-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.okx-glow--1 {
  width: 250px; height: 250px;
  top: -80px; left: -40px;
  background: rgba(91,108,240,0.15);
  animation: glow-drift 6s ease-in-out infinite alternate;
}
.okx-glow--2 {
  width: 200px; height: 200px;
  bottom: -60px; right: -20px;
  background: rgba(232,162,62,0.12);
  animation: glow-drift 8s ease-in-out infinite alternate-reverse;
}
@keyframes glow-drift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(20px, -15px); }
}

.okx-content {
  position: relative;
  z-index: 1;
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.okx-header { display: flex; flex-direction: column; gap: 8px; }
.okx-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.okx-icon {
  width: 28px; height: 28px;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.12));
}
.okx-badge {
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.4);
}
.okx-title {
  font-size: 1.4rem; font-weight: 900;
  line-height: 1.2;
  color: #fff;
}
.okx-reward {
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.5);
}
.okx-reward strong {
  color: var(--yellow);
  font-weight: 900;
}

.okx-body {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.okx-quote {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.okx-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.okx-perk {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px 12px;
  border-radius: 99px;
  white-space: nowrap;
}

.okx-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  background: #fff;
  color: #000;
  font-family: 'Nunito', sans-serif;
  font-size: 14px; font-weight: 800;
  padding: 13px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}
.okx-cta:hover {
  box-shadow: 0 6px 28px rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.okx-cta:active { transform: scale(0.97); }

/* ═══ SECTIONS ═══ */
.sec { margin-bottom: 48px; }
.sec-header { margin-bottom: 24px; }
.sec-title-wrap {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 6px;
}
.sec-title {
  font-size: 1.5rem; font-weight: 900; color: var(--text);
}
.sec-chip {
  font-family: 'Space Mono', monospace;
  font-size: 14px; font-weight: 700;
  color: var(--blue);
  background: var(--sky);
  padding: 4px 14px; border-radius: 8px;
}
.sec-desc {
  font-size: 14px; font-weight: 600; color: var(--t3);
}

/* ═══ BUTTONS ═══ */
.btn {
  font-family: 'Nunito', sans-serif;
  font-size: 14px; font-weight: 800;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  transition: transform 0.1s, opacity 0.15s;
  white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn:hover  { opacity: 0.85; }
.btn:active { transform: scale(0.95); }
.btn--full  { width: 100%; }
.btn--primary { background: var(--blue); color: #fff; }

/* ═══ JOURNAL LIST ═══ */
.journal-list {
  display: flex; flex-direction: column; gap: 10px;
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.journal-list::-webkit-scrollbar { width: 6px; }
.journal-list::-webkit-scrollbar-track { background: transparent; }
.journal-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.journal-list::-webkit-scrollbar-thumb:hover { background: var(--t3); }
.journal-entry {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--t3);
  display: flex; align-items: center; gap: 16px;
  transition: transform 0.15s;
}
.journal-entry:hover { transform: translateX(4px); }
.journal-entry--win  { border-left-color: var(--green); }
.journal-entry--loss { border-left-color: var(--red); }

.je-date {
  font-size: 12px; font-weight: 700; color: var(--t3);
  min-width: 85px; flex-shrink: 0;
}
.je-amount {
  font-family: 'Space Mono', monospace;
  font-size: 15px; font-weight: 700;
  min-width: 90px; flex-shrink: 0;
}
.je-amount--pos { color: var(--green); }
.je-amount--neg { color: var(--red); }

.je-note {
  flex: 1; font-size: 13px; font-weight: 600;
  color: var(--t2); min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.journal-empty {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.journal-empty-emoji { font-size: 2.5rem; margin-bottom: 10px; }
.journal-empty-text {
  font-size: 14px; font-weight: 600;
  color: var(--t3); line-height: 1.7;
}

/* ═══ LEADERBOARD (Wall of Legends) ═══ */
.sec-chip--gold {
  background: linear-gradient(135deg, #FDF6EC, #FAF0DE);
  color: var(--gold);
  border: 1px solid rgba(212,145,47,0.18);
}

.lg-list {
  display: flex; flex-direction: column; gap: 8px;
}
.lg-card {
  background: var(--card);
  border-radius: 12px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.lg-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.lg-gold {
  background: linear-gradient(135deg, #FDFAF3 0%, #FAF3E4 100%);
  border-color: rgba(212,145,47,0.18);
}
.lg-silver {
  background: linear-gradient(135deg, #F9FAFB 0%, #F0F1F4 100%);
  border-color: rgba(155,161,176,0.2);
}
.lg-bronze {
  background: linear-gradient(135deg, #FBF7F2 0%, #F7F0E6 100%);
  border-color: rgba(180,120,55,0.18);
}

.lg-left {
  display: flex; align-items: center; gap: 12px;
  min-width: 0; flex: 1;
}
.lg-rank {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  flex-shrink: 0;
  background: var(--border);
  color: var(--t3);
}
.lg-rank--1 { background: linear-gradient(135deg, #E8A23E, #C47F25); color: #fff; }
.lg-rank--2 { background: linear-gradient(135deg, #C4C9D2, #9BA1B0); color: #fff; }
.lg-rank--3 { background: linear-gradient(135deg, #D4A574, #B47837); color: #fff; }

.lg-info { min-width: 0; }
.lg-name {
  font-size: 14px; font-weight: 800; color: var(--text);
  display: block;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lg-msg {
  font-size: 11px; font-weight: 600; color: var(--t3);
  display: block;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-top: 1px;
}

.lg-amt {
  font-family: 'Space Mono', monospace;
  font-size: 14px; font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  background: var(--green-bg);
  padding: 4px 12px;
  border-radius: 8px;
}

.board-empty {
  background: var(--card);
  border-radius: 12px;
  padding: 48px 24px;
  text-align: center;
  border: 1px dashed var(--border);
}
.board-empty-emoji { font-size: 2.5rem; margin-bottom: 12px; }
.board-empty-text {
  font-size: 14px; font-weight: 600;
  color: var(--t3); line-height: 1.8;
}

/* ═══ DONATE SECTION ═══ */
.donate-strip {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, #FDFAF4 0%, var(--yellow-bg) 100%);
  border: 1px solid rgba(212,145,47,0.18);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 24px;
}
.dst-icon-wrap {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow);
  border-radius: 12px;
  color: #fff;
}
.dst-svg { width: 22px; height: 22px; }
.dst-body { flex: 1; min-width: 0; }
.dst-main {
  font-size: 14px; font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}
.dst-sub {
  font-size: 12px; font-weight: 600;
  color: var(--t3);
  line-height: 1.6;
}

.donate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.donate-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 14px;
  transition: transform 0.2s, border-color 0.2s;
}
.donate-card:hover { transform: translateY(-4px); }
.dc-btc:hover  { border-color: #F7931A; }
.dc-usdt:hover { border-color: #26A17B; }
.dc-sol:hover  { border-color: #9945FF; }

.dc-header { display: flex; align-items: center; gap: 10px; }
.dc-icon-wrap { width: 36px; height: 36px; flex-shrink: 0; }
.dc-icon { width: 36px; height: 36px; border-radius: 50%; display: block; }
.dc-icon-fb {
  width: 36px; height: 36px;
  border-radius: 50%; color: #fff; font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.dc-name { font-size: 15px; font-weight: 800; text-align: left; }
.dc-net {
  font-size: 11px; font-weight: 700;
  color: var(--t3); text-transform: uppercase;
  letter-spacing: 0.06em; text-align: left;
}

.dc-qr {
  width: 120px; height: 120px;
  border-radius: 12px; overflow: hidden;
  background: var(--white);
  border: 2px solid var(--border); padding: 4px;
}
.dc-qr canvas, .dc-qr img {
  width: 100% !important; height: 100% !important; display: block;
}

.dc-addr-wrap {
  width: 100%; background: var(--border);
  border-radius: 8px; padding: 10px 12px; overflow: hidden;
}
.dc-addr {
  font-family: 'Space Mono', monospace;
  font-size: 10px; font-weight: 700;
  color: var(--t2); word-break: break-all;
  line-height: 1.5; display: block; text-align: center;
}

.dc-copy {
  width: 100%;
  font-family: 'Nunito', sans-serif;
  font-size: 13px; font-weight: 800;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  background: var(--cc, var(--blue));
  color: #fff;
  transition: transform 0.1s, opacity 0.15s;
}
.dc-copy:hover { opacity: 0.85; }
.dc-copy:active { transform: scale(0.95); }

/* ═══ SUPPORT CTA (Donation Form) ═══ */
.support-cta {
  background: var(--card);
  border-radius: 14px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.spc-left {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.spc-ico {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sky);
  border-radius: 10px;
}
.spc-title {
  font-size: 15px; font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}
.spc-desc {
  font-size: 12px; font-weight: 600;
  color: var(--t3);
}
.spc-form {
  display: flex;
  align-items: center;
  gap: 8px;
}
.spc-input {
  font-family: 'Nunito', sans-serif;
  font-size: 16px; font-weight: 600;
  color: var(--text);
  background: var(--border);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 11px 14px;
  outline: none;
  min-width: 100px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.spc-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(76,110,245,0.08);
}
.spc-input--grow { flex: 1; }
.spc-btn {
  font-family: 'Nunito', sans-serif;
  font-size: 13px; font-weight: 800;
  padding: 11px 20px;
  border-radius: 10px;
  border: none;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.1s, opacity 0.15s;
}
.spc-btn:hover { opacity: 0.85; }
.spc-btn:active { transform: scale(0.96); }

.support-confirm {
  margin-top: 14px;
  background: var(--green-bg);
  color: var(--green);
  font-size: 13px; font-weight: 700;
  padding: 12px 16px;
  border-radius: 10px;
  text-align: center;
  animation: pop-in 0.3s ease;
}
@keyframes pop-in {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ═══ FOOTER ═══ */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}
.footer-logo {
  font-size: 1.05rem; font-weight: 900;
  color: var(--text);
}
.footer-brand .bear-ico--footer {
  animation: bear-bounce 2s ease-in-out infinite;
}
.footer-tagline {
  font-size: 12px; font-weight: 600;
  color: var(--t3);
  margin-bottom: 14px;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}
.footer-x {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  transition: transform 0.15s, opacity 0.15s;
}
.footer-x:hover { transform: scale(1.1); opacity: 0.8; }
.footer-x:active { transform: scale(0.95); }
.footer-bottom {
  font-size: 11px; font-weight: 600; color: var(--t3);
}
.footer-dot { margin: 0 6px; }

/* ═══ MUSIC WIDGET ═══ */
.music-widget {
  position: fixed; bottom: 20px; right: 20px;
  display: flex; align-items: center; gap: 8px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 99px;
  padding: 8px 12px 8px 14px;
  box-shadow: var(--shadow);
  z-index: 100; cursor: pointer; user-select: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.music-widget.on {
  border-color: var(--yellow-d);
  box-shadow: 0 4px 24px rgba(212,145,47,0.2);
}
.music-lbl {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--t3);
}
.music-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue); color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.1s;
}
.music-btn:hover { transform: scale(1.1); }
.music-btn:active { transform: scale(0.9); }

.eq-wrap { display: flex; align-items: flex-end; gap: 2px; height: 14px; }
.eq-wrap span {
  display: block; width: 3px; height: 30%;
  background: var(--t3); border-radius: 2px;
  transition: background 0.2s;
}
.music-widget.on .eq-wrap span { background: var(--yellow-d); }

@keyframes eq1 { 0%,100%{height:20%} 50%{height:90%} }
@keyframes eq2 { 0%,100%{height:70%} 30%{height:15%} 70%{height:100%} }
@keyframes eq3 { 0%,100%{height:45%} 60%{height:82%} }
@keyframes eq4 { 0%,100%{height:85%} 45%{height:22%} }
.music-widget.on .eq-wrap span:nth-child(1) { animation: eq1 0.62s ease-in-out infinite; }
.music-widget.on .eq-wrap span:nth-child(2) { animation: eq2 0.48s ease-in-out infinite; }
.music-widget.on .eq-wrap span:nth-child(3) { animation: eq3 0.70s ease-in-out infinite; }
.music-widget.on .eq-wrap span:nth-child(4) { animation: eq4 0.54s ease-in-out infinite; }

/* ═══ TOAST ═══ */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(14px);
  background: var(--text); color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 13px; font-weight: 700;
  padding: 12px 24px; border-radius: 99px;
  z-index: 999; opacity: 0; pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .page { padding: 20px 14px 80px; }
  .hero { padding: 8px 0 24px; }
  .hero-badges { margin-bottom: 20px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); margin-bottom: 18px; }
  .hero-desc-main { font-size: 13px; margin-bottom: 12px; }
  .hero-pills { gap: 6px; }
  .hero-pill { font-size: 9px; padding: 4px 10px; }

  .dash-card { margin-bottom: 28px; }
  .dc-hero { padding: 18px 16px 14px; flex-wrap: wrap; gap: 8px; }
  .dc-earned { font-size: 1.4rem; }
  .dc-pct { font-size: 0.95rem; }
  .dc-bar-wrap { padding: 14px 16px; }
  .dc-stat { padding: 12px 14px; gap: 10px; }
  .dc-stat-ico { width: 28px; height: 28px; padding: 5px; }
  .dc-stat-val { font-size: 12px; }
  .dc-stat-lbl { font-size: 9px; }

  .sec { margin-bottom: 36px; }
  .sec-title { font-size: 1.3rem; }
  .sec-chip { font-size: 12px; padding: 4px 10px; }

  .donate-strip { flex-direction: column; gap: 12px; padding: 16px 18px; }
  .dst-icon-wrap { width: 36px; height: 36px; }
  .dst-main { font-size: 13px; }
  .dst-sub { font-size: 11px; }

  .donate-grid { grid-template-columns: 1fr; gap: 12px; }
  .donate-card {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 16px;
    gap: 0;
    text-align: left;
    align-items: flex-start;
  }
  .donate-card:hover { transform: none; }
  .dc-header {
    flex: 1;
    min-width: 0;
  }
  .dc-qr {
    width: 80px; height: 80px;
    border-radius: 10px;
    margin-left: auto;
    flex-shrink: 0;
    border-width: 1.5px;
    padding: 3px;
  }
  .dc-addr-wrap {
    width: 100%;
    margin-top: 12px;
    padding: 8px 10px;
    border-radius: 8px;
  }
  .dc-addr { font-size: 9.5px; text-align: left; line-height: 1.4; }
  .dc-copy {
    width: 100%;
    margin-top: 8px;
    padding: 12px 16px;
    font-size: 13px;
    border-radius: 10px;
  }

  .okx-content { padding: 22px 18px 22px; }
  .okx-title { font-size: 1.15rem; }
  .okx-quote { font-size: 13px; }
  .okx-perks { gap: 6px; }
  .okx-perk { font-size: 10px; padding: 4px 10px; }
  .okx-cta { width: 100%; justify-content: center; padding: 14px 22px; }

  .journal-list { max-height: 400px; }
  .journal-entry { flex-wrap: wrap; gap: 6px; padding: 14px 16px; }
  .je-date { min-width: auto; font-size: 11px; }
  .je-amount { min-width: auto; font-size: 14px; }
  .je-note { width: 100%; white-space: normal; font-size: 12px; }

  .lg-card { padding: 12px 14px; gap: 10px; }
  .lg-name { font-size: 13px; }
  .lg-amt { font-size: 12px; padding: 4px 10px; }

  .support-cta { padding: 18px 16px; }
  .spc-left { gap: 10px; margin-bottom: 14px; }
  .spc-ico { width: 36px; height: 36px; font-size: 1.2rem; }
  .spc-title { font-size: 14px; }
  .spc-form { flex-wrap: wrap; }
  .spc-input { flex: 1 1 100%; min-width: 0; padding: 13px 14px; font-size: 16px; }
  .spc-btn { width: 100%; padding: 13px 20px; font-size: 14px; }

  .footer { padding-top: 22px; }
  .footer-tagline { font-size: 11px; }

  .btn { width: 100%; }
  .music-widget { bottom: 14px; right: 14px; }
}

@media (max-width: 380px) {
  .page { padding: 16px 12px 70px; }
  .hero-title { font-size: 2rem; }
  .hero-badges { margin-bottom: 16px; }
  .dc-hero { padding: 16px 14px 12px; }
  .dc-earned { font-size: 1.2rem; }
  .dc-bar-wrap { padding: 12px 14px; }
  .dc-stat { padding: 10px 12px; }
  .dc-stat-val { font-size: 11px; }
  .dc-level { font-size: 9px; padding: 3px 8px; }
  .okx-content { padding: 20px 16px; }
  .donate-card { padding: 14px 12px; }
  .dc-qr { width: 70px; height: 70px; }
  .dc-addr { font-size: 9px; }
  .lg-card { padding: 10px 12px; }
}
