/* ════════════════════════════════════════
   TOP RANKINGS — JYWA Payment
   ════════════════════════════════════════ */

/* ─── Podium 3 besar ─── */
.podium {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 8px;
    align-items: end;
    margin-bottom: 4px;
}
.podium-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px 8px 12px;
    text-align: center;
}
.podium-item.pos-1 {
    padding-top: 22px;
    padding-bottom: 18px;
    border-color: rgba(56, 225, 255, 0.35);
    background: linear-gradient(180deg, var(--aurora-dim), var(--surface) 70%);
    position: relative;
}
.podium-crown {
    font-size: 20px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}
.podium-medal { font-size: 24px; margin-bottom: 6px; }
.podium-name { font-size: 13px; font-weight: 800; }
.podium-stat { font-size: 10px; color: var(--text-faint); margin-top: 4px; line-height: 1.5; }

/* ─── Rank number chip ─── */
.rank-num {
    flex-shrink: 0;
    width: 30px; height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--surface-2);
    color: var(--dim);
    font-size: 11px;
    font-weight: 800;
    font-family: 'Space Grotesk', monospace;
}

/* ─── Product rank + bar ─── */
.rank-product { padding: 13px 0; border-bottom: 1px solid var(--line); }
.rank-product:last-child { border-bottom: none; padding-bottom: 2px; }
.bar-track {
    height: 5px;
    border-radius: 99px;
    background: var(--surface-2);
    overflow: hidden;
}
.bar-track.big { height: 7px; }
.bar-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--aurora), var(--aurora-deep));
    box-shadow: 0 0 10px rgba(56, 225, 255, 0.3);
    animation: bar-grow 1s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: left;
}
@keyframes bar-grow { from { transform: scaleX(0); } }
