:root{--bg:#0f1115;--fg:#e5e7eb;--muted:#9aa0a6;--accent:#2563eb;--card:#171923;--border:#232838}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;background:var(--bg);color:var(--fg);font:14px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif}
.header{padding:24px;text-align:center;background:var(--card);border-bottom:1px solid var(--border)}
.container{max-width:900px;margin:0 auto;padding:20px}
form{display:grid;gap:12px;background:var(--card);padding:16px;border:1px solid var(--border);border-radius:8px}
label{font-weight:600}
input{padding:10px;border-radius:6px;border:1px solid var(--border);background:#0c0e14;color:var(--fg)}
.hint{font-size:12px;color:var(--muted)}
.turnstile{min-height:70px}
button{padding:10px 14px;border-radius:6px;border:1px solid var(--border);background:var(--accent);color:white;font-weight:600;cursor:pointer}
button:disabled{opacity:.6;cursor:not-allowed}
.results{margin-top:16px;background:var(--card);border:1px solid var(--border);border-radius:8px;padding:16px}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px}
.grid .item{padding:10px;border:1px solid var(--border);border-radius:6px;background:#0c0e14}
.grid .item .label{color:var(--muted);font-size:12px}
.grid .item .value{font-size:14px;font-weight:600}
.map{height:360px;border:1px solid var(--border);border-radius:8px;margin-top:12px}
.attribution{font-size:12px;color:var(--muted);margin-top:6px}
.toast{position:fixed;right:16px;bottom:16px;background:#111827;color:#fff;padding:12px 14px;border-radius:8px;border:1px solid var(--border);box-shadow:0 8px 24px rgba(0,0,0,.35);max-width:320px}