:root{
  --bg:#05070a; --card:#0f1720; --muted:#9aa6b2; --accent:#00d47a; --accent2:#4cc0ff;
}
*{box-sizing:border-box}
html,body{height:100%;margin:0;background:linear-gradient(180deg,#02060a,#07111a);font-family:Inter,Arial,sans-serif;color:#e6eef3}
.container{max-width:980px;margin:28px auto;padding:18px}
.header{display:flex;align-items:center;justify-content:space-between;padding:14px;background:linear-gradient(90deg,#07131a,#0b2230);border-radius:10px}
.brand{display:flex;align-items:center;gap:12px}
.brand img{height:44px}
.card{background:var(--card);padding:18px;border-radius:12px;margin-top:18px;box-shadow:0 8px 30px rgba(0,0,0,0.6)}
.form input{width:100%;padding:12px;margin:8px 0;border-radius:8px;border:1px solid rgba(255,255,255,0.03);background:transparent;color:inherit}
.button{background:var(--accent);color:#002017;padding:10px 14px;border-radius:10px;border:none;cursor:pointer;font-weight:600}
.button.ghost{background:transparent;border:1px solid rgba(255,255,255,0.04);color:var(--accent)}
.vote-grid{display:flex;gap:18px;flex-wrap:wrap;justify-content:center}
.candidate{width:240px;background:#071623;padding:18px;border-radius:12px;text-align:center;cursor:pointer;transition:transform .18s}
.candidate img{width:84px;height:84px;border-radius:10px;background:rgba(255,255,255,0.02);padding:8px}
.candidate h3{margin:8px 0 4px}
.cand1{border-top:4px solid var(--accent)}.cand2{border-top:4px solid var(--accent2)}
.small{color:var(--muted);font-size:0.9rem}
.chart-wrap{display:flex;flex-direction:column;align-items:center;gap:12px}
@media (max-width:600px){.candidate{width:48%}}
