:root{
  --bg:#0b0e14;
  --panel:#121826;
  --text:#e6e6eb;
  --muted:#8b93a7;
  --accent:#4da3ff;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto;
  background:var(--bg);
  color:var(--text);
}
.panel{
  background:var(--panel);
  padding:16px;
  border-radius:10px;
  margin:12px;
}
h1,h2,h3{margin-top:0}
button{
  background:var(--accent);
  color:#000;
  border:0;
  border-radius:6px;
  padding:6px 12px;
  cursor:pointer;
}
input,select{
  background:#0e1320;
  color:var(--text);
  border:1px solid #1e253d;
  padding:6px;
  border-radius:4px;
}
a{color:var(--accent);text-decoration:none}