.vote-sites-grid {
  padding: 20px 24px 70px; max-width: 820px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
  justify-content: center;
}
.vote-site-card {
  background: oklch(0.24 0.07 300 / 0.6);
  border: 1px solid oklch(0.7 0.18 340 / 0.35);
  border-radius: 18px; padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
}
.vote-site-head { display: flex; align-items: center; justify-content: space-between; }
.vote-site-name { color: white; font-weight: 700; font-size: 16px; }
.vote-site-gift { font-size: 22px; }
.vote-site-reward { color: oklch(0.85 0.02 280 / 0.7); font-size: 13px; }
.vote-site-cooldown { color: oklch(0.8 0.02 280 / 0.5); font-size: 12px; }
.vote-btn {
  margin-top: 6px;
  background: linear-gradient(135deg, var(--c-magenta), oklch(0.6 0.15 300));
  border: none; color: white; padding: 11px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 13.5px; cursor: pointer; width: 100%;
}
.vote-just-voted { position: absolute; top: 10px; right: 10px; font-size: 13px; }
.vote-just-voted[hidden] { display: none; }

.vote-top-section { padding: 20px 24px 30px; max-width: 700px; margin: 0 auto; }
.vote-top-title { font-family: var(--font-display); font-weight: 600; font-size: 26px; color: white; text-align: center; margin: 0 0 36px; }
.vote-podium { display: flex; align-items: flex-end; justify-content: center; gap: 18px; margin-bottom: 36px; }
.vote-list { overflow: hidden; }
.vote-row { display: flex; align-items: center; gap: 16px; padding: 12px 22px; border-bottom: 1px solid oklch(0.4 0.05 280 / 0.25); }
.vote-row:last-child { border-bottom: none; }
.vote-rank { width: 26px; text-align: center; font-family: var(--font-display); font-weight: 700; color: oklch(0.8 0.02 280 / 0.5); font-size: 14px; }
.vote-name { flex: 1; color: white; font-weight: 600; font-size: 13.5px; }
.vote-votes { color: oklch(0.85 0.02 280 / 0.7); font-size: 12.5px; }
