/* ═══ Classement des votants (/vote) ══════════════════════════════════════ */

.vote-page {
  min-height: 70vh;
  background:
    radial-gradient(1100px 520px at 50% -120px, rgba(201,147,58,0.11), transparent 60%),
    radial-gradient(900px 600px at 88% 8%, rgba(110,150,210,0.05), transparent 55%),
    linear-gradient(180deg, #0c0e13 0%, #08090d 55%, #060709 100%);
}
.container { max-width: 1000px; margin: 0 auto; padding: 0 32px; }

/* Hero */
.vote-hero { padding: 120px 0 40px; text-align: center; }
.vote-hero .section-label { display: inline-block; }
.vote-title { font-size: clamp(32px, 4.4vw, 52px); color: #fff; margin: 12px 0 14px; }
.vote-sub { max-width: 620px; margin: 0 auto 28px; color: var(--muted); font-size: 15.5px; line-height: 1.6; }
.vote-cta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 12px;
  background: linear-gradient(180deg, var(--gold-lt), var(--gold));
  color: #0a0a0a; font-weight: 800; font-size: 15px; text-decoration: none;
  letter-spacing: 0.01em; box-shadow: 0 10px 30px rgba(201,147,58,0.25);
  transition: transform 0.15s, box-shadow 0.15s;
}
.vote-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(201,147,58,0.35); }

/* List */
.vote-list { padding: 20px 0 90px; }
.vote-empty { text-align: center; color: var(--muted); font-style: italic; padding: 40px 0; }
.vote-table-wrap {
  background: linear-gradient(180deg, rgba(24,27,35,0.92), rgba(17,20,27,0.92));
  border: 1px solid rgba(201,147,58,0.16);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.vote-table { width: 100%; border-collapse: collapse; }
.vote-table thead th {
  text-align: left; padding: 16px 22px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vote-num { text-align: right; }
.vote-th-rank { width: 90px; }
.vote-row td {
  padding: 15px 22px; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px; color: var(--text); vertical-align: middle;
}
.vote-row:last-child td { border-bottom: none; }
.vote-row:hover td { background: rgba(255,255,255,0.02); }
.vote-rank { color: var(--muted); font-weight: 700; width: 90px; }
.vote-name { color: #fff; font-weight: 600; }
.vote-count { text-align: right; color: var(--gold-lt); font-weight: 800; font-size: 16px; }

/* Top 3 — médaillés */
.vote-medal {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 30px; height: 30px; padding: 0 8px; border-radius: 8px;
  font-size: 13px; font-weight: 800; color: #0a0a0a;
}
.vote-row--r1 .vote-medal { background: linear-gradient(180deg, #ffd976, #e8b23e); }
.vote-row--r2 .vote-medal { background: linear-gradient(180deg, #e4e7ee, #b6bcc9); }
.vote-row--r3 .vote-medal { background: linear-gradient(180deg, #e6a86a, #c17d42); }
.vote-row--top td { background: rgba(201,147,58,0.05); }
.vote-row--r1 .vote-name { color: #ffe0a0; }
.vote-row--r1 td { box-shadow: inset 3px 0 0 0 #e8b23e; }
.vote-row--r2 td { box-shadow: inset 3px 0 0 0 #b6bcc9; }
.vote-row--r3 td { box-shadow: inset 3px 0 0 0 #c17d42; }

@media (max-width: 600px) {
  .vote-hero { padding: 96px 0 32px; }
  .vote-table thead th, .vote-row td { padding: 13px 16px; }
}
