:root {
  color: #f8fbff;
  background: #07101f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 10%, rgba(56, 189, 248, .24), transparent 28rem),
    radial-gradient(circle at 85% 0%, rgba(168, 85, 247, .20), transparent 26rem),
    linear-gradient(145deg, #07101f, #0b1222 55%, #050816);
}
button {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  color: white;
  background: linear-gradient(135deg, #2dd4bf, #3b82f6);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(59, 130, 246, .28);
}
button:disabled { opacity: .55; }
.shell { width: min(960px, 100%); margin: 0 auto; padding: 20px; display: grid; gap: 16px; }
.card {
  border: 1px solid rgba(148, 163, 184, .18);
  background: rgba(15, 23, 42, .76);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
}
.hero { display: flex; justify-content: space-between; align-items: center; min-height: 170px; overflow: hidden; }
.eyebrow, .label { margin: 0 0 8px; color: #93c5fd; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(34px, 10vw, 64px); line-height: .92; margin-bottom: 16px; }
h2 { margin-bottom: 0; }
.status { color: #cbd5e1; line-height: 1.6; margin-bottom: 0; }
.user-panel, .section-title { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
#walletBalance { font-size: 30px; }
.tables { display: grid; gap: 12px; margin-top: 18px; }
.table-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(125, 211, 252, .16);
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(30, 41, 59, .92), rgba(15, 23, 42, .78));
}
.table-meta { display: flex; flex-wrap: wrap; gap: 8px; color: #cbd5e1; }
.badge { padding: 6px 10px; border-radius: 999px; background: rgba(59, 130, 246, .16); color: #bfdbfe; font-size: 13px; }
.table-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.secondary { background: rgba(148, 163, 184, .16); box-shadow: none; }
.chip-stack { position: relative; width: 120px; height: 100px; flex: none; }
.chip-stack span { position: absolute; width: 82px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #f59e0b, #ef4444); border: 6px dashed rgba(255,255,255,.62); box-shadow: 0 16px 32px rgba(239, 68, 68, .25); }
.chip-stack span:nth-child(1) { right: 0; top: 8px; }
.chip-stack span:nth-child(2) { right: 20px; top: 38px; background: linear-gradient(135deg, #22c55e, #14b8a6); }
.chip-stack span:nth-child(3) { right: 4px; top: 68px; background: linear-gradient(135deg, #60a5fa, #8b5cf6); }
@media (max-width: 620px) { .hero { align-items: flex-start; } .chip-stack { width: 86px; transform: scale(.78); transform-origin: top right; } }
