@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* --- PODIUM CONTAINER (TOP 3) --- */
.podium-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px; /* Lebih rapat dikit */
    margin-bottom: 25px;
    padding-top: 10px;
    height: 190px;
}

.podium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 30%; /* Biar responsif */
}

/* TROPHY BOX (GANTI AVATAR BULAT) */
.podium-trophy-box {
    width: 100%;
    aspect-ratio: 1/1; /* Kotak Sempurna */
    max-width: 80px;
    border-radius: 18px; /* Squircle */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    margin-bottom: 12px;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.podium-trophy-box i {
    font-size: 2rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    margin-bottom: 5px;
}

.rank-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* --- JUARA 1 (EMAS) --- */
.podium-item.champion {
    z-index: 2;
    margin-bottom: 20px; /* Naik lebih tinggi */
    transform: scale(1.1);
    width: 35%; /* Lebih lebar */
}
.podium-item.champion:hover {
    transform: scale(1.15) translateY(-5px);
}

.podium-item.champion .podium-trophy-box {
    background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
    border: 2px solid #FCD34D;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.25);
}

.podium-item.champion i {
    color: #F59E0B; /* Emas */
    font-size: 2.5rem;
    animation: floatTrophy 3s ease-in-out infinite;
}

.podium-item.champion .rank-label { color: #D97706; }

/* JUARA 2 (PERAK) */
.rank-2 .podium-trophy-box {
    background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
    border: 2px solid #CBD5E1;
}
.rank-2 i { color: #94A3B8; } /* Silver */
.rank-2 .rank-label { color: #64748B; }

/* JUARA 3 (PERUNGGU) */
.rank-3 .podium-trophy-box {
    background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
    border: 2px solid #FDBA74;
}
.rank-3 i { color: #EA580C; } /* Bronze */
.rank-3 .rank-label { color: #C2410C; }


@keyframes floatTrophy {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* TEXT STYLES */
.podium-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: #374151;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    padding: 0 5px;
}

.podium-amount {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(32, 117, 103, 0.08);
    padding: 3px 8px;
    border-radius: 6px;
}

/* --- LIST SECTION (RANK 4-10) --- */
.rest-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    border-top: 1px dashed rgba(0,0,0,0.1);
    padding-top: 20px;
}

.leaderboard-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: #fff;
    border-radius: 12px; /* Lebih kotak dikit */
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.2s;
}

.leaderboard-item:hover {
    background: #f9fafb;
    transform: translateX(3px);
    border-color: rgba(32, 117, 103, 0.2);
}

.rank-small {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: #9ca3af;
    width: 35px; /* Lebarin dikit */
    display: flex;
    align-items: center;
}

.donor-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4b5563;
}

.donor-amount-small {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
}

/* --- MARQUEE --- */
.marquee-container {
    background: #f9fafb;
    padding: 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    overflow: hidden;
    position: relative;
    margin-top: 15px;
    border: 1px solid rgba(0,0,0,0.03);
}

#latest-donation-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
    color: #6b7280;
    font-weight: 500;
}

/* --- STORM THEME FIX --- */
body.processing-theme .podium-name { color: #e5e7eb; }
body.processing-theme .podium-trophy-box {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.1) !important;
    box-shadow: none !important;
}
body.processing-theme .leaderboard-item { background: rgba(255,255,255,0.03); border-color: transparent; }
body.processing-theme .donor-name { color: #d1d5db; }
body.processing-theme .rank-small { color: #6b7280; }
