:root{
  --bg:#0b0d12;
  --card:#131826;
  --muted:#a6b0bf;
  --text:#e7eef7;
  --border:rgba(255,255,255,.10);
  --shadow: 0 16px 30px rgba(0,0,0,.35);
  --accent:#7c3aed;
  --accent2:#06b6d4;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(124,58,237,.20), transparent 60%),
              radial-gradient(900px 500px at 90% 30%, rgba(6,182,212,.14), transparent 55%),
              var(--bg);
  color:var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
.wrap{
  width:min(1100px, calc(100% - 24px));
  margin:0 auto;
  padding:16px;
}
.top{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  flex-wrap:wrap;
}
h1{margin:0 0 6px 0; font-size:28px; letter-spacing:-.02em}
.muted{color:var(--muted)}
.card{
  margin-top:14px;
  background:rgba(19,24,38,.92);
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  box-shadow: var(--shadow);
}
.hud{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.chip{
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px 10px;
  font-weight:800;
}
.btn{
  cursor:pointer;
  border:1px solid rgba(124,58,237,.35);
  background:rgba(124,58,237,.16);
  color:var(--text);
  border-radius:12px;
  padding:9px 12px;
  font-weight:900;
}
.btn:hover{filter:brightness(1.04)}
.prompt{display:flex; align-items:baseline; gap:12px; flex-wrap:wrap}
.prompt__label{font-weight:900; color:rgba(255,255,255,.85)}
.prompt__name{
  font-size:34px;
  font-weight:1000;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.options{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:14px;
}
@media (min-width: 860px){
  .options{grid-template-columns: repeat(4, minmax(0, 1fr));}
}
.opt{
  position:relative;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
  min-height:110px;
  cursor:pointer;
  box-shadow: 0 10px 18px rgba(0,0,0,.25);
}
.opt:focus{outline:3px solid rgba(6,182,212,.35); outline-offset:2px}
.opt__cap{
  position:absolute;
  left:10px;
  bottom:10px;
  background:rgba(0,0,0,.30);
  border:1px solid rgba(255,255,255,.18);
  padding:6px 8px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
}
.msg{min-height:24px; margin-top:12px; font-weight:900}
.msg.ok{color:#34d399}
.msg.err{color:#fb7185}
.tips{display:flex; gap:10px; align-items:center; margin-top:14px; flex-wrap:wrap}
.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(6,182,212,.12);
  border:1px solid rgba(6,182,212,.25);
  font-weight:900;
}
