:root {
  --primary: #22c55e;
  --primary-dark: #16a34a;
  --primary-light: #4ade80;
  --primary-glow: rgba(34,197,94,.08);
  --primary-glow2: rgba(34,197,94,.05);
  --gold: #D4AF37;
  --gold-light: #F5D76E;
  --gold-dark: #B8941E;
  --gold-glow: rgba(212,175,55,.08);
  --bg: #0a0a0f;
  --bg2: #0d0d14;
  --surface: rgba(255,255,255,.02);
  --surface-hover: rgba(255,255,255,.04);
  --border: rgba(255,255,255,.06);
  --border-hover: rgba(255,255,255,.1);
  --border-accent: rgba(34,197,94,.2);
  --text: #e8e8e8;
  --text-secondary: #aaa;
  --text-muted: #888;
  --text-dim: #666;
  --text-faint: #555;
  --danger: #ef4444;
  --danger-bg: rgba(239,68,68,.08);
  --info: #60a5fa;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,.25);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'SF Mono', 'Fira Code', 'Courier New', monospace;
}

*,*::before,*::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Background Effects ── */
.bg-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}
.bg-glow {
  position: fixed; top: -40%; left: -20%; width: 140%; height: 140%;
  background: radial-gradient(ellipse at 30% 20%, var(--primary-glow) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, var(--primary-glow2) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}
.bg-orb {
  position: fixed; top: -20%; left: -10%; width: 60%; height: 60%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: orbFloat 12s ease-in-out infinite;
}
.bg-gold-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(15%, 10%); }
  66% { transform: translate(-10%, 15%); }
}

/* ── Container ── */
.container {
  position: relative; z-index: 1;
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
}
.container-narrow { max-width: 900px; }

/* ── Navigation ── */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; position: relative;
}
.nav-border { border-bottom: 1px solid var(--border); }
.nav-border::after {
  content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}
.nav-border-gold::after {
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.15), transparent);
}

.logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 22px; font-weight: 800; letter-spacing: -.5px; text-decoration: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.nav-links {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none; color: var(--text-muted);
  font-size: 13px; font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1.5px;
  background: var(--primary);
  transition: width .3s; border-radius: 2px;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after { width: 100%; }
.nav-links-gold a:hover { color: var(--gold-light); }
.nav-links-gold a:hover::after { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.nav-links-gold a.active { color: var(--gold); }
.nav-links-gold a.active::after { width: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.nav-toggle { display: none; cursor: pointer; color: var(--text-muted); background: none; border: none; font-size: 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border: none; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: all .25s; text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34,197,94,.3);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
  background: #1a1a1a; color: #444; cursor: not-allowed;
  transform: none; box-shadow: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold));
  background-size: 200% auto;
  color: #0a0a0a; font-weight: 800;
  box-shadow: 0 4px 24px rgba(212,175,55,.15);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212,175,55,.3);
}

.btn-outline {
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  background: transparent;
  transition: all .2s;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(34,197,94,.05);
}
.btn-outline-gold { border-color: rgba(212,175,55,.15); color: var(--gold); }
.btn-outline-gold:hover { border-color: rgba(212,175,55,.35); background: rgba(212,175,55,.08); box-shadow: 0 4px 24px rgba(212,175,55,.1); }

.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 10px; }
.btn-sm { padding: 8px 16px; font-size: 12px; border-radius: 6px; }
.btn-block { width: 100%; }

/* ─── Status / Badges ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .8px;
}
.badge-green { background: var(--primary-glow); border: 1px solid var(--border-accent); color: var(--primary); }
.badge-yellow { background: rgba(251,191,36,.1); border: 1px solid rgba(251,191,36,.2); color: #fbbf24; }
.badge-gray { background: var(--surface); border: 1px solid var(--border); color: var(--text-faint); }
.badge-dot::before { content: '●'; font-size: 8px; }

/* ── Hero ── */
.hero {
  text-align: center; padding: 80px 0 60px;
}
.hero-glow {
  text-align: center; padding: 100px 0 80px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900; letter-spacing: -2px; line-height: 1.05;
  margin-bottom: 20px;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero h1 .gradient-gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}
.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-dim);
  max-width: 560px; margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ── Stat Cards ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin-bottom: 40px;
}
.stats-3 { grid-template-columns: repeat(3, 1fr); }

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center;
  position: relative; overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all .3s; cursor: default;
}
.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}
.stat-card .stat-icon { font-size: 16px; margin-bottom: 12px; color: var(--text-faint); }
.stat-card .label {
  font-size: 11px; color: var(--text-faint);
  text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
  margin-bottom: 8px;
}
.stat-card .value {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800; color: var(--text);
  letter-spacing: -1px;
}
.stat-card .value.gold { color: var(--gold); }
.stat-card .sub { font-size: 13px; color: var(--text-faint); margin-top: 6px; }

/* ── Feature / Card Grid ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .3s;
}
.card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.card-link { text-decoration: none; color: inherit; display: block; }
.card-gold {
  background: linear-gradient(160deg, rgba(212,175,55,.04) 0%, rgba(0,0,0,.2) 100%);
  border: 1px solid rgba(212,175,55,.07);
}
.card-gold::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.15), transparent);
}
.card-gold:hover { border-color: rgba(212,175,55,.15); }

.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 20px;
}
.icon-burn { background: rgba(239,68,68,.15); }
.icon-fee { background: var(--primary-glow); }
.icon-stake { background: rgba(59,130,246,.15); }
.icon-gold { background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(212,175,55,.04)); border: 1px solid rgba(212,175,55,.12); }

.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.card .card-footer { margin-top: 16px; }

/* ── Section ── */
section { margin-bottom: 80px; }
.section-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--primary);
  margin-bottom: 12px;
}
.section-label-gold { color: var(--gold); }
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px; color: var(--text-dim);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}

/* ── Tables ── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
th, td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
th {
  color: var(--primary); font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px; font-size: 12px;
}
td { color: var(--text-secondary); }
tr:last-child td { border-bottom: none; }
td.mono { font-family: var(--mono); font-size: 13px; word-break: break-all; }
td.green { color: var(--primary); }
td.blue { color: var(--info); }
td.yellow { color: #fbbf24; }
td.red { color: var(--danger); }
.table-striped tbody tr:nth-child(odd) { background: rgba(255,255,255,.01); }
.table-responsive { display: block; width: 100%; overflow-x: auto; }

/* ── Highlight Box ── */
.highlight {
  background: var(--primary-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  padding: 20px; margin: 16px 0;
}
.highlight p { margin-bottom: 0; font-size: 14px; line-height: 1.7; }
.highlight code { background: rgba(255,255,255,.04); padding: 2px 6px; border-radius: 4px; font-size: 13px; color: var(--primary); }

/* ── Contract Address Display ── */
.contract-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contract-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.contract-header h3 { font-size: 20px; font-weight: 700; }
.contract-address {
  background: rgba(0,0,0,.3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-muted);
  word-break: break-all;
  margin-bottom: 20px;
  line-height: 1.6;
}
.contract-meta {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.contract-meta span {
  padding: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px; color: var(--text-dim);
}

/* ── Code ── */
code, .mono {
  font-family: var(--mono);
}
code {
  background: rgba(255,255,255,.04);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--primary);
}

/* ── Form Inputs ── */
input, select, textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px; font-family: inherit;
  outline: none; transition: border .2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--primary); }
input::placeholder { color: #444; }
select { cursor: pointer; appearance: auto; }

/* ── Status Messages ── */
.status-box {
  margin-top: 16px; padding: 14px 18px;
  border-radius: 10px;
  font-size: 13px; line-height: 1.6; display: none;
}
.status-box.info {
  display: block;
  background: var(--primary-glow);
  border: 1px solid var(--border-accent);
  color: var(--primary);
}
.status-box.error {
  display: block;
  background: var(--danger-bg);
  border: 1px solid rgba(239,68,68,.15);
  color: #f87171;
}
.status-box.success {
  display: block;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.25);
  color: var(--primary-light);
}

/* ── Wallet Info Bar ── */
.wallet-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 13px; flex-wrap: wrap; gap: 8px;
}
.wallet-bar .addr { color: var(--text-muted); font-family: var(--mono); font-size: 12px; }
.wallet-bar .bal { color: var(--primary); font-weight: 600; }
.wallet-bar .net { color: var(--text-muted); }

/* ── Footer ── */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--text-faint);
  position: relative;
}
footer::before {
  content: ''; position: absolute; top: -1px; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent);
}
footer a { color: var(--text-muted); text-decoration: none; }
footer a:hover { color: var(--primary); }

/* ── Steps / Timeline ── */
.timeline {
  position: relative; padding: 20px 0;
}
.timeline-line {
  position: absolute; left: 19px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-glow), transparent);
}
.steps-grid {
  display: grid; gap: 32px;
}
.step {
  display: flex; gap: 20px; align-items: flex-start;
}
.step-num {
  min-width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  flex-shrink: 0;
}
.step-num-green {
  background: var(--primary-glow);
  border: 2px solid var(--primary);
  color: var(--primary);
}
.step-num-gold {
  background: rgba(212,175,55,.12);
  border: 2px solid var(--gold);
  color: var(--gold);
}
.step-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

/* ── Copy Button ── */
.copy-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 14px;
  background: var(--primary-glow);
  border: 1px solid var(--border-accent);
  border-radius: 6px;
  color: var(--primary);
  font-size: 12px; font-weight: 600; cursor: pointer;
  transition: all .2s; font-family: inherit;
}
.copy-btn:hover { background: rgba(34,197,94,.15); }

/* ── Loading / Skeleton ── */
.pulse { animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
@keyframes shimmerRight {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.08); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.15); }

/* ── Connect Prompt ── */
.connect-prompt {
  text-align: center; padding: 100px 24px 60px;
}
.connect-prompt .icon-glow {
  width: 80px; height: 80px; margin: 0 auto 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(212,175,55,.04));
  border: 1px solid rgba(212,175,55,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--gold);
  box-shadow: 0 0 60px rgba(212,175,55,.05);
  animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(212,175,55,.1); }
  50% { box-shadow: 0 0 40px rgba(212,175,55,.2); }
}
.connect-prompt h2 {
  font-size: 28px; font-weight: 900; margin-bottom: 12px; letter-spacing: -.5px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 4s linear infinite;
}
.connect-prompt p {
  color: var(--text-faint);
  font-size: 14px; margin-bottom: 32px;
  max-width: 420px; margin-left: auto; margin-right: auto; line-height: 1.6;
}

/* ── Action Cards ── */
.action-card {
  background: linear-gradient(160deg, rgba(212,175,55,.04) 0%, rgba(0,0,0,.2) 100%);
  border: 1px solid rgba(212,175,55,.07);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: all .3s;
}
.action-card:hover { border-color: rgba(212,175,55,.15); box-shadow: 0 8px 40px rgba(0,0,0,.35); }
.action-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.15), transparent);
}
.action-card h2 { font-size: 19px; font-weight: 800; margin-bottom: 4px; color: #f0e6d0; letter-spacing: -.3px; }
.action-card .desc { font-size: 13px; color: var(--text-faint); margin-bottom: 24px; }

/* ── Input Group ── */
.input-group { margin-bottom: 18px; }
.input-group label {
  display: block; font-size: 11px; color: var(--text-faint);
  margin-bottom: 8px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .8px;
}
.input-group .input-wrap {
  display: flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,.03);
  border: 1px solid rgba(212,175,55,.1);
  border-radius: var(--radius);
  padding: 4px 16px 4px 4px;
  transition: all .3s;
}
.input-group .input-wrap:focus-within {
  border-color: rgba(212,175,55,.3);
  box-shadow: 0 0 20px rgba(212,175,55,.05);
}
.input-group input {
  flex: 1; padding: 14px 16px; background: transparent; border: none;
  color: #f0e6d0; font-size: 18px; font-weight: 700; font-family: inherit; outline: none;
}
.input-group input::placeholder { color: #333; }
.input-group .max-btn {
  padding: 7px 14px; background: rgba(212,175,55,.1); border: none;
  border-radius: var(--radius-sm);
  color: var(--gold); font-size: 11px; font-weight: 800; cursor: pointer;
  transition: all .3s; letter-spacing: .5px;
}
.input-group .max-btn:hover { background: rgba(212,175,55,.2); transform: scale(1.05); }
.input-group .balance-display { font-size: 12px; color: var(--text-faint); margin-top: 6px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .stats-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .hero-glow { padding: 60px 0 40px; }
  .hero { padding: 50px 0 40px; }
  .stats-3 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .nav-links a.nav-hide-mobile { display: none; }
  .nav-links a.btn { display: inline-flex; }
  nav { flex-wrap: wrap; gap: 12px; }
  .nav-links { gap: 16px; }
  section { margin-bottom: 48px; }
  .contract-header { flex-direction: column; align-items: flex-start; }
  .card { padding: 24px; }
  .action-card { padding: 24px 20px; }
  .connect-prompt { padding: 60px 16px 40px; }
  th, td { padding: 10px 12px; font-size: 13px; }
}
@media (max-width: 480px) {
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 12px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
