:root{
  --bg:#06070d;
  --surface:#0b1222;
  --surface2:#0f1a33;
  --border:rgba(255,255,255,.12);
  --text:#eaf2ff;
  --muted:#a7b3d1;
  --accent:#00e5ff;
  --accent2:#7c4dff;
  --radius:16px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{color:var(--accent);text-decoration:none}
a:hover{color:#7deaff}
.wrap{width:min(1100px,92vw);margin:0 auto}
.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
}
.btn{
  display:inline-flex;
  gap:8px;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(0,229,255,.35);
  background:transparent;
  color:var(--text);
  cursor:pointer;
}
.btn.primary{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  border-color:transparent;
  color:#071016;
  font-weight:700;
}
