:root {
  --bg: #0f172a;
  --panel: #111827;
  --panel-2: #1f2937;
  --text: #f8fafc;
  --muted: #94a3b8;
  --accent: #8b5cf6;
  --accent-2: #22c55e;
  --danger: #ef4444;
  --border: rgba(255,255,255,.08);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: linear-gradient(180deg, #0b1022 0%, var(--bg) 100%);
  color: var(--text);
}
.container { max-width: 980px; margin: 0 auto; padding: 24px; }
.panel {
  background: rgba(17,24,39,.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}
.option-card {
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}
.option-card.selected {
  border-color: rgba(34,197,94,.95);
  background: linear-gradient(180deg, rgba(34,197,94,.18) 0%, rgba(31,41,55,1) 100%);
  box-shadow: 0 0 0 2px rgba(34,197,94,.18), 0 12px 28px rgba(34,197,94,.14);
}
.selected-mark {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.18);
  border: 1px solid rgba(34,197,94,.35);
  color: #bbf7d0;
  font-size: 13px;
  font-weight: 700;
}
.button, button {
  display: inline-block;
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  text-decoration: none;
  color: white;
  background: var(--accent);
  cursor: pointer;
}
button.success, .button.success {
  background: var(--accent-2);
}
button.secondary, .button.secondary { background: #334155; }
button.danger, .button.danger { background: var(--danger); }
.input, textarea, select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0b1220;
  color: var(--text);
  padding: 12px 14px;
}
.photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  background: #0b1220;
}
.muted { color: var(--muted); }
.topbar { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom: 20px; }
.list { display:grid; gap:12px; }
.row { display:flex; justify-content:space-between; gap:12px; align-items:center; flex-wrap:wrap; }
.badge { display:inline-block; padding:6px 10px; border-radius:999px; background:#312e81; color:#ddd6fe; font-size:12px; }
.score { font-size: 28px; font-weight: 800; }
.actions { display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.actions form { margin: 0; }
.hero { padding: 56px 0 24px; }
h1,h2,h3,p { margin-top: 0; }
