:root{
  --bg:#0b1220;
  --card:#0f1b33;
  --card2:#0b162c;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --accent:#2563eb;
  --border:rgba(255,255,255,.10);
  --shadow:0 12px 30px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
body{
  margin:0;
  background: radial-gradient(1200px 700px at 20% 0%, rgba(37,99,235,.25), transparent 55%),
              radial-gradient(900px 500px at 100% 30%, rgba(16,185,129,.18), transparent 60%),
              var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
.app{
  max-width: 980px;
  margin: 0 auto;
  padding: 22px;
}
.top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
h1{margin:0;font-size:34px;letter-spacing:.2px}
.tag{margin:6px 0 0;color:var(--muted)}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  box-shadow: var(--shadow);
  margin: 12px 0;
}
label{display:block;color:var(--muted);font-size:13px;margin-top:10px}
input,select,textarea,button{
  width:100%;
  padding:12px 12px;
  margin-top:8px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(2,6,23,.55);
  color:var(--text);
  outline:none;
}
textarea{resize:vertical}
button{
  background: linear-gradient(180deg, rgba(37,99,235,1), rgba(29,78,216,1));
  border:none;
  cursor:pointer;
  font-weight:600;
  margin-top:12px;
}
button:hover{filter:brightness(1.05)}
button.ghost{
  background: rgba(255,255,255,.06);
  border:1px solid var(--border);
}
button.ghost:hover{background: rgba(255,255,255,.09)}
.hidden{display:none !important}
.muted{color:var(--muted)}
.small{font-size:12px}
.status{margin-top:10px;padding:10px;border-radius:12px;background:rgba(0,0,0,.25);border:1px solid var(--border)}
.paybox{margin-top:12px;padding:12px;border-radius:12px;background:rgba(2,6,23,.35);border:1px solid var(--border)}
.paytitle{font-weight:700;margin-bottom:6px}
.grid2{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(max-width:720px){ .grid2{grid-template-columns:1fr} }
.results{margin-top:12px}
.resItem{
  padding:12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(2,6,23,.35);
  margin:10px 0;
}
.resHead{display:flex;justify-content:space-between;gap:10px;align-items:flex-start}
.resName{font-weight:800}
.resMeta{color:var(--muted);font-size:12px;margin-top:4px}
.pill{
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid var(--border);
  color:var(--muted);
  font-size:12px;
}
.resume-actions{display:flex;gap:10px;margin-top:12px}
.resume-actions button{width:auto;flex:1}
.footer{margin-top:18px;text-align:center;color:var(--muted);font-size:12px}
.toast{
  position:sticky;
  top:10px;
  z-index:5;
  background: rgba(2,6,23,.9);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--shadow);
}
.btnlink{display:inline-block;margin-top:12px;color:#93c5fd}
