/* ── Breadcrumb ── */
.ms-breadcrumb {
background: var(--brand);
padding: 10px 20px;
position: sticky;
top: 64px;
z-index: 20;
}
.ms-breadcrumb__inner {
max-width: 1200px; margin: 0 auto;
display: flex; align-items: center; gap: 8px;
font-size: 13px; color: #9db8d8;
}
.ms-breadcrumb a { color: #c8d8f0; text-decoration: none; }
.ms-breadcrumb a:hover { color: #fff; }
.ms-breadcrumb i { font-size: 8px; color: #5a7a9a; }

/* ── Hero ── */
.ms-hero-winners {
background: linear-gradient(135deg, #1a3c6e 0%, #0f2647 40%, #1a3c6e 100%);
padding: 56px 20px;
text-align: center;
position: relative;
overflow: hidden;
}
.ms-hero-winners::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at 30% 50%, rgba(248,200,66,0.08) 0%, transparent 60%),
            radial-gradient(circle at 70% 30%, rgba(232,64,64,0.06) 0%, transparent 50%);
pointer-events: none;
}
.ms-hero-winners__content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.ms-hero-winners__eyebrow {
display: inline-flex; align-items: center; gap: 6px;
background: rgba(248,200,66,0.15); color: var(--gold);
font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
padding: 6px 16px; border-radius: 100px; margin-bottom: 20px;
border: 1px solid rgba(248,200,66,0.25);
}
.ms-hero-winners__title {
font-size: clamp(28px, 5vw, 48px); font-weight: 700; color: #fff;
line-height: 1.15; margin-bottom: 8px;
}
.ms-hero-winners__sub { color: #9db8d8; font-size: 15px; }

/* ── Podium ── */
.ms-podium {
max-width: 900px; margin: -40px auto 0; padding: 0 20px; position: relative; z-index: 2;
}
.ms-podium__grid {
display: grid; grid-template-columns: 1fr 1.2fr 1fr;
gap: 12px; align-items: end;
}
.ms-podium__card {
background: var(--white); border: 1px solid var(--border);
border-radius: var(--radius-lg); overflow: hidden; text-align: center;
transition: transform 0.3s;
}
.ms-podium__card:hover { transform: translateY(-4px); }
.ms-podium__card--gold {
order: 2; border-color: var(--gold); box-shadow: 0 8px 32px rgba(248,200,66,0.2);
}
.ms-podium__card--silver { order: 1; }
.ms-podium__card--bronze { order: 3; }

.ms-podium__img-wrap {
position: relative; aspect-ratio: 3/4; background: var(--surface); overflow: hidden;
}
.ms-podium__img {
width: 100%; height: 100%; object-fit: cover; object-position: top;
}
.ms-podium__medal {
position: absolute; top: 12px; left: 12px;
width: 44px; height: 44px; border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.ms-podium__medal--gold { background: var(--gold); }
.ms-podium__medal--silver { background: #cbd5e1; }
.ms-podium__medal--bronze { background: #d97706; }
.ms-podium__votes-badge {
position: absolute; top: 12px; right: 12px;
background: rgba(0,0,0,0.7); color: #fff;
font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px;
}
.ms-podium__body { padding: 20px; }
.ms-podium__name {
font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 4px;
}
.ms-podium__title { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.ms-podium__pct {
font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700;
color: var(--brand); margin-bottom: 12px;
}
.ms-podium__cta {
display: inline-flex; align-items: center; gap: 6px;
background: var(--accent); color: #fff; font-size: 12px; font-weight: 600;
padding: 8px 18px; border-radius: 100px; text-decoration: none; transition: background 0.15s;
}
.ms-podium__cta:hover { background: #c73030; }
.ms-podium__cta--gold { background: var(--gold); color: #3a2a00; }
.ms-podium__cta--gold:hover { background: #e8b830; }

@media (max-width: 768px) {
.ms-podium__grid { grid-template-columns: 1fr; gap: 16px; }
.ms-podium__card--gold, .ms-podium__card--silver, .ms-podium__card--bronze { order: 0; }
}

/* ── Stats Bar ── */
.ms-stats-bar {
max-width: 900px; margin: 40px auto 0; padding: 0 20px;
display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.ms-stat-card {
background: var(--white); border: 1px solid var(--border);
border-radius: var(--radius-lg); padding: 16px; text-align: center;
}
.ms-stat-card__num { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: var(--text); }
.ms-stat-card__label { font-size: 11px; color: var(--muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.05em; }

@media (max-width: 640px) {
.ms-stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ── All Participants ── */
.ms-participants {
max-width: 900px; margin: 48px auto 0; padding: 0 20px;
}
.ms-participants h2 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.ms-participants > p { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

.ms-participant-row {
display: flex; align-items: center; gap: 12px;
padding: 12px 16px; background: var(--white); border: 1px solid var(--border);
border-radius: var(--radius-lg); margin-bottom: 8px; transition: border-color 0.15s;
}
.ms-participant-row:hover { border-color: var(--brand); }
.ms-participant-row__rank {
font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700;
min-width: 28px; text-align: center; color: var(--muted);
}
.ms-participant-row__rank--gold { color: #b8860b; }
.ms-participant-row__rank--silver { color: #6b7280; }
.ms-participant-row__rank--bronze { color: #92400e; }
.ms-participant-row__avatar {
width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
background: var(--brand-light); flex-shrink: 0;
}
.ms-participant-row__info { flex: 1; min-width: 0; }
.ms-participant-row__name { font-size: 14px; font-weight: 600; }
.ms-participant-row__votes {
font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--brand);
white-space: nowrap;
}

/* ── CTA ── */
.ms-cta-bar {
max-width: 900px; margin: 48px auto 0; padding: 0 20px 56px;
text-align: center;
}
.ms-btn {
display: inline-flex; align-items: center; gap: 8px;
padding: 13px 26px; border-radius: 100px;
font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600;
text-decoration: none; transition: all 0.2s; border: none;
}
.ms-btn--brand { background: var(--brand); color: #fff; }
.ms-btn--brand:hover { background: #142f58; }
.ms-btn--outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.ms-btn--outline:hover { background: var(--brand); color: #fff; }
.ms-btn--accent { background: var(--accent); color: #fff; }
.ms-btn--accent:hover { background: #c73030; }

/* ── Confetti Animation ── */
@keyframes confetti-fall {
0% { transform: translateY(-100%) rotate(0deg); opacity: 1; }
100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}
.ms-confetti {
position: absolute; width: 8px; height: 8px; border-radius: 2px;
animation: confetti-fall 3s ease-in-out forwards;
}