:root{
  --bg1:#070a12; --bg2:#0b1430;
  --card:rgba(255,255,255,.06);
  --line:rgba(255,255,255,.12);
  --text:#eaf0ff; --muted:rgba(234,240,255,.7);
  --btn2:rgba(255,255,255,.10);
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --radius:18px;
}
*{box-sizing:border-box}
body{
  margin:0; min-height:100vh;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: radial-gradient(900px 600px at 20% 10%, rgba(59,130,246,.20), transparent 60%),
              radial-gradient(900px 700px at 90% 30%, rgba(30,215,96,.14), transparent 55%),
              linear-gradient(180deg,var(--bg1),var(--bg2));
}
a{color:inherit; text-decoration:none}
.muted{color:var(--muted)}

.top{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  padding:16px 18px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
}
.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  font-weight:900;
  background:linear-gradient(135deg, rgba(59,130,246,.95), rgba(30,215,96,.85));
}
.name{font-weight:900}
.sub{font-size:12px; color:var(--muted)}

.actions{display:flex; align-items:center; gap:10px}
.wallet{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 10px 12px;
  min-width: 150px;
  text-align:right;
  box-shadow: var(--shadow);
}
.wl{font-size:12px; color:var(--muted)}
.wv{font-weight:900; font-size:16px; margin-top:2px}

.btnSecondary{
  border:1px solid var(--line);
  background: var(--btn2);
  color: var(--text);
  font-weight:900;
  padding:10px 12px;
  border-radius: 14px;
  cursor:pointer;
}

.wrap{width:min(980px, 92vw); margin: 18px auto 34px}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
}
h1{margin:0 0 6px}

.grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  margin-top:14px;
}
@media (max-width: 760px){ .grid{grid-template-columns:1fr} }

.tile{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.14);
  border-radius: 16px;
  padding: 14px;
}
.tileTitle{font-weight:900; margin-bottom:6px}
.tileText{font-size:13px; color:var(--muted); line-height:1.4}