:root{
  --bg:#0b1220;
  --card:#121b2d;
  --text:#e9eefb;
  --muted:#a8b3cf;
  --border:rgba(255,255,255,.10);
  --accent:#4f8cff;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background:linear-gradient(180deg,#070b14, var(--bg));
  color:var(--text);
}
.wrap{max-width:860px; margin:0 auto; padding:16px}
.card{
  background:rgba(18,27,45,.86);
  border:1px solid var(--border);
  border-radius:14px;
  padding:16px;
}
h1{margin:0 0 12px 0; font-size:22px}
h2{margin:16px 0 10px; font-size:18px}
.form{display:flex; flex-direction:column; gap:10px; margin-top:10px}
label{font-size:13px; color:var(--muted)}
input,select,textarea{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);
}
button{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:linear-gradient(90deg,var(--accent),#7aa7ff);
  color:#061022;
  font-weight:700;
  cursor:pointer;
}
button.secondary{
  background:rgba(255,255,255,.06);
  color:var(--text);
}
.link{display:inline-block; margin-top:12px; color:#9db9ff; text-decoration:none}
.row{display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap}
.box{
  margin-top:10px;
  padding:12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
}
.big{font-size:18px; font-weight:800}
.muted{color:var(--muted); font-size:12px}
.pill{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  font-size:13px;
  color:var(--muted);
  margin:10px 0;
}
.list{display:flex; flex-direction:column; gap:10px; margin-top:10px}
.item{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
}
.itemRow{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
}