﻿/* ===== LEADERBOARD - PODIUM ===== */
.lb-podium {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 40px;
    max-width: 600px;
    padding: 20px 0 0;
}

.lb-podium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 180px;
}

.lb-podium-medal {
    font-size: 28px;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.lb-podium-1 .lb-podium-medal { font-size: 36px; }

.lb-podium-avatar-wrap {
    margin-bottom: 10px;
    position: relative;
}

.lb-podium-avatar-wrap img {
    border: 3px solid rgba(255,255,255,0.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* 1. sıra - altın */
.lb-podium-1 .lb-podium-avatar-wrap img,
.lb-podium-1 .lb-avatar-letter {
    border-color: #8b5cf6;
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.35), 0 4px 20px rgba(0,0,0,0.3);
}

/* 2. sıra - gümüş */
.lb-podium-2 .lb-podium-avatar-wrap img,
.lb-podium-2 .lb-avatar-letter {
    border-color: #94a3b8;
    box-shadow: 0 0 20px rgba(148, 163, 184, 0.25), 0 4px 16px rgba(0,0,0,0.3);
}

/* 3. sıra - bronz */
.lb-podium-3 .lb-podium-avatar-wrap img,
.lb-podium-3 .lb-avatar-letter {
    border-color: #cd7f32;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.25), 0 4px 16px rgba(0,0,0,0.3);
}

.lb-podium-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    text-align: center;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lb-podium-coins {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #8b5cf6;
    margin-bottom: 12px;
}

.lb-podium-coins .material-symbols-rounded {
    font-size: 16px;
}

/* Pedestal */
.lb-podium-pedestal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 0 0;
    font-size: 22px;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
}

.lb-pedestal-1 {
    height: 100px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-bottom: none;
}

.lb-pedestal-2 {
    height: 72px;
    background: linear-gradient(180deg, rgba(148, 163, 184, 0.2) 0%, rgba(148, 163, 184, 0.06) 100%);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-bottom: none;
}

.lb-pedestal-3 {
    height: 56px;
    background: linear-gradient(180deg, rgba(205, 127, 50, 0.2) 0%, rgba(205, 127, 50, 0.06) 100%);
    border: 1px solid rgba(205, 127, 50, 0.2);
    border-bottom: none;
}

/* Avatar letter fallback */
.lb-avatar-letter {
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    border: 3px solid rgba(255,255,255,0.15);
}

/* ===== LEADERBOARD - LIST (4+) ===== */
.lb-list {
    max-width: 600px;
    margin: 0 auto;
}

.lb-list-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lb-list-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(26, 16, 53, 0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.lb-list-row:hover {
    background: rgba(26, 16, 53, 0.85);
    border-color: rgba(255,255,255,0.1);
}

.lb-list-rank {
    width: 32px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.lb-list-user {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.lb-list-user img {
    flex-shrink: 0;
}

.lb-list-user .lb-avatar-letter {
    flex-shrink: 0;
}

.lb-list-user span {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lb-list-coins {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #8b5cf6;
    flex-shrink: 0;
}

.lb-list-coins .material-symbols-rounded {
    font-size: 16px;
}

/* ===== SKELETON LOADING ===== */
.skeleton-podium .lb-podium-medal { visibility: hidden; }

.lb-avatar-skeleton {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    animation: lbShimmer 1.5s infinite;
}

.lb-avatar-skeleton.lg {
    width: 90px;
    height: 90px;
}

.lb-podium-name-skeleton {
    width: 80px;
    height: 14px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    margin-bottom: 6px;
    animation: lbShimmer 1.5s infinite;
}

.lb-podium-coins-skeleton {
    width: 60px;
    height: 12px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    margin-bottom: 12px;
    animation: lbShimmer 1.5s infinite;
}

.lb-list-skeleton {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lb-row-skeleton {
    height: 56px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    animation: lbShimmer 1.5s infinite;
}

@keyframes lbShimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .lb-podium {
        gap: 8px;
        padding: 10px 0 0;
        margin-bottom: 24px;
    }

    .lb-podium-medal { font-size: 22px; }
    .lb-podium-1 .lb-podium-medal { font-size: 28px; }

    .lb-avatar-skeleton, 
    .lb-podium-2 .lb-podium-avatar-wrap img,
    .lb-podium-3 .lb-podium-avatar-wrap img {
        width: 54px;
        height: 54px;
    }

    .lb-avatar-skeleton.lg,
    .lb-podium-1 .lb-podium-avatar-wrap img {
        width: 70px;
        height: 70px;
    }

    .lb-podium-2 .lb-avatar-letter,
    .lb-podium-3 .lb-avatar-letter {
        width: 54px !important;
        height: 54px !important;
        font-size: 22px !important;
    }

    .lb-podium-1 .lb-avatar-letter {
        width: 70px !important;
        height: 70px !important;
        font-size: 28px !important;
    }

    .lb-podium-name {
        font-size: 12px;
        max-width: 100px;
    }

    .lb-podium-coins { font-size: 11px; }

    .lb-pedestal-1 { height: 80px; }
    .lb-pedestal-2 { height: 56px; }
    .lb-pedestal-3 { height: 44px; }

    .lb-list-row {
        padding: 10px 12px;
        gap: 10px;
    }

    .lb-list-rank { font-size: 13px; width: 28px; }
    .lb-list-user span { font-size: 13px; }
    .lb-list-coins { font-size: 12px; }
}
