:root {
  --bg: #050507;
  --panel: #0c0c10;
  --border: #1b1b25;
  --purple: #b86bff;
  --pink: #ff4fd8;
  --text: #eaeaf0;
  --muted: #9a9ab0;
  --success: #1dd75b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(60% 40% at 10% 0%, #35175c 0%, transparent 60%),
    radial-gradient(60% 40% at 90% 0%, #3a0f2b 0%, transparent 60%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 7, 0.9);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 105px;
}
.logo {
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--purple);
}
.nav-links a {
  margin: 0 14px;
  font-size: 14px;
  position: relative;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
}
.wallet-btn {
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  font-weight: 600;
  font-size: 14px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 120px 20px 80px;
}
.badge {
  display: inline-block;
  background: #130d1f;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--purple);
  font-size: 13px;
}
.hero h1 {
  margin: 30px 0 16px;
  font-size: 52px;
  font-weight: 800;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  color: transparent;
}
.hero p {
  color: #fff;
  max-width: 700px;
  margin: auto;
}
.hero-btns {
  margin-top: 32px;
  display: flex;
  gap: 18px;
  justify-content: center;
}
.btn {
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
}
.btn-primary {
  background: linear-gradient(90deg, var(--purple), var(--pink));
}
.btn-outline {
  border: 1px solid var(--purple);
  color: #fff;
}

/* STAT */
.stat {
  margin: 60px auto 0;
  max-width: 520px;
  background: linear-gradient(135deg, #1b1230, #0d0a15);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
}
.stat h3 {
  font-size: 14px;
  color: var(--muted);
}
.stat span {
  font-size: 36px;
  font-weight: 800;
}

/* SECTIONS */
section {
  padding: 90px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 34px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  color: transparent;
}
.section-title p {
  color: var(--muted);
  margin-top: 10px;
}

/* TABLE */
.table-wrap {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  text-align: left;
}
th {
  color: var(--muted);
  font-weight: 500;
}
tr:last-child td {
  border-bottom: none;
}
.badge-num {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}
.level-card {
  width: 300px;
  padding: 25px;
  border-radius: 20px;
  background: linear-gradient(180deg, #3b0050, #13001b);
  color: white;
  font-family: sans-serif;
  box-shadow: 0 0 20px rgba(200, 0, 255, .3);
}

.badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,80,250,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.level {
  font-size: 18px;
  opacity: 0.9;
}

.range {
  font-size: 16px;
  opacity: 0.7;
  margin-bottom: 20px;
}

.row {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 15px;
}

.green { color: #38ff66; }
.blue  { color: #3cb7ff; }
.pink  { color: #ff5bfd; }

.total {
  margin-top: 12px;
  font-size: 17px;
  font-weight: bold;
}


/* CARDS */
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
}
.card h4 {
  margin: 14px 0 8px;
}
.card p {
  color: var(--muted);
  font-size: 14px;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 70px 0 40px;
  background: #050507;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
}
.footer h4 {
  margin-bottom: 14px;
}
.footer a {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 14px;
}
.copy {
  margin-top: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 38px;
  }
  .nav-links {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
