
:root{
  --bg:#0b1020;
  --card:#0f172a;
  --muted:#9aa4b2;
  --border:#1f2937;
  --brand:#60a5fa;
  --brand-2:#7c3aed;
}
*{box-sizing:border-box}
body{
  font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1000px 600px at 10% 10%, rgba(96,165,250,.15), transparent),
              radial-gradient(800px 500px at 90% 20%, rgba(124,58,237,.12), transparent),
              var(--bg);
  color:#e5e7eb;
  margin:0; padding:48px 20px;
}
.container{max-width:1000px;margin:0 auto}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.00));
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}
h1,h2,h3{margin:6px 0 14px 0}
.sub{color:var(--muted);margin-top:-6px;margin-bottom:18px}
.row{display:flex;gap:10px;flex-wrap:wrap}
input,select,button{
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#0b1220;
  color:#e5e7eb;
  outline:none;
  transition: .15s ease;
}
input:focus,select:focus{
  border-color:#334155; box-shadow:0 0 0 3px rgba(96,165,250,.15)
}
button{
  cursor:pointer; border:1px solid transparent;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color:white; font-weight:600;
}
button.ghost{
  background: transparent; border-color:#334155; color:#e5e7eb;
}
a{color:#93c5fd; text-decoration:none}
a:hover{text-decoration:underline}
.badge{
  display:inline-block; margin-left:8px; padding:6px 10px;
  background:#0b1220; border:1px solid #334155; border-radius:999px; color:#cbd5e1
}
.hr{height:1px;background:#1f2937;margin:18px 0;border-radius:2px}
.progress-row{margin:10px 0}
.progress-bar{height:12px;background:#141b2b;border-radius:999px;overflow:hidden;border:1px solid #1f2937}
.progress-bar > div{height:12px;background:linear-gradient(90deg,#60a5fa,#22d3ee);width:0%}
.list{display:grid; gap:8px}
.list-item{
  display:flex; justify-content:space-between; align-items:center;
  background:#0b1220; border:1px solid #1f2937; border-radius:12px; padding:10px 14px;
}
.small{font-size:12px;color:#9aa4b2}
footer{margin-top:18px;color:#64748b;text-align:center;font-size:12px}
