:root{
  --primary:#0d6efd;
  --muted:#6c757d;
}
body { font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color:#212529; }
.card.candidate { border-radius:12px; transition: transform .12s, box-shadow .12s; border:1px solid rgba(0,0,0,0.04); background:#fff; }
.card.candidate:hover{ transform: translateY(-3px); box-shadow:0 8px 20px rgba(13,110,253,0.06); }
.card.candidate.selected{ border:2px solid var(--primary); background:linear-gradient(90deg,#f8fbff,#ffffff);}
.photo{ width:100%; height:120px; object-fit:cover; border-radius:8px; }
.section-title{ font-weight:600; color:var(--primary); margin-bottom:12px; }
.vote-panel{ background:linear-gradient(180deg,#ffffff,#fbfdff); padding:18px; border-radius:10px; border:1px solid rgba(13,110,253,0.03); }
.small-muted{ color:var(--muted); font-size:.9rem; }