:root{
  --bg:#0b1220;
  --card:rgba(255,255,255,.06);
  --border:rgba(255,255,255,.14);
  --text:#f5f7ff;
  --muted:rgba(245,247,255,.72);
  --link:#9ad6ff;
  --yes:#22c55e;
  --no:#ef4444;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--text);
  background: radial-gradient(1200px 700px at 20% 10%, rgba(52,211,153,.14), transparent 60%),
              radial-gradient(900px 600px at 80% 30%, rgba(59,130,246,.14), transparent 55%),
              radial-gradient(900px 700px at 50% 100%, rgba(244,63,94,.10), transparent 60%),
              var(--bg);
}
a{color:var(--link);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px;margin:0 auto;padding:0 18px}
header{
  position:sticky;top:0;z-index:10;
  background:rgba(11,18,32,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-row{
  display:flex;align-items:center;gap:14px;
  padding:14px 0;
}
.brand img{height:36px;display:block}
.nav{
  display:flex;flex-wrap:wrap;gap:12px;
  margin-left:auto;
}
.nav a{
  padding:8px 10px;border-radius:10px;
  border:1px solid transparent;
  color:rgba(245,247,255,.9);
}
.nav a:hover{border-color:var(--border);background:rgba(255,255,255,.06)}
.lang{
  margin-left:10px;
  background:#111827;color:#fff;border:1px solid var(--border);
  border-radius:10px;padding:8px 10px;
}
.hero{
  padding:44px 0 10px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
}
h1{font-size:clamp(28px,3.6vw,48px);line-height:1.1;margin:0 0 10px}
h2{font-size:clamp(22px,2.3vw,30px);margin:0 0 10px}
p{color:var(--muted);margin:10px 0}
section{padding:28px 0}
.grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
}
@media (max-width: 900px){ .grid{grid-template-columns:1fr} .nav{margin-left:0} }
.btns{display:flex;gap:12px;flex-wrap:wrap;margin-top:12px}
button{
  border:0;border-radius:12px;
  padding:12px 16px;
  font-size:16px;
  cursor:pointer;
  font-weight:650;
}
button.primary{background:var(--yes);color:#052b16}
button.danger{background:var(--no);color:#330b0b}
button.ghost{background:rgba(255,255,255,.08);color:var(--text);border:1px solid var(--border)}
.small{font-size:12px;color:rgba(245,247,255,.55)}
.results{margin-top:14px}
.row{display:flex;justify-content:space-between;gap:10px;font-size:14px;color:rgba(245,247,255,.85)}
.bar{height:14px;border-radius:999px;background:#1f2937;overflow:hidden;margin:6px 0 12px}
.fill-yes{height:100%;background:var(--yes);width:0%}
.fill-no{height:100%;background:var(--no);width:0%}
#map{height:380px;border-radius:16px;border:1px solid var(--border);overflow:hidden}
.table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:14px;
  border:1px solid var(--border);
}
.table th,.table td{
  padding:10px 12px;
  border-bottom:1px solid rgba(255,255,255,.10);
  text-align:left;
  vertical-align:top;
}
.table th{background:rgba(255,255,255,.06)}
.list{margin:0;padding-left:18px;color:var(--muted)}
footer{
  margin-top:28px;
  border-top:1px solid var(--border);
  background:rgba(0,0,0,.25);
}
.footer-row{
  padding:18px 0;
  display:flex;flex-wrap:wrap;gap:10px;justify-content:space-between;align-items:center;
}
.footer-links a{color:rgba(245,247,255,.75);margin-right:10px}
.badge{display:inline-block;padding:3px 8px;border:1px solid var(--border);border-radius:999px;color:rgba(245,247,255,.8);font-size:12px}
