/* ============================================================
   TOP FANS — Bloc home classement
   ============================================================ */
.top-fans-block {
    padding: 14px 16px;
}
.top-fans-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.top-fans-title {
    font-family: var(--font-display, 'Orbitron');
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin: 0;
    color: var(--text-1);
    flex: 1;
}
.top-fans-title i { color: #ffc107; margin-right: 6px; }
.top-fans-period {
    display: flex;
    gap: 4px;
    background: rgba(0,0,0,0.3);
    padding: 3px;
    border-radius: 8px;
}
.tf-btn {
    background: transparent;
    border: none;
    color: var(--text-3);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
    letter-spacing: 0.5px;
}
.tf-btn:hover { color: var(--text-1); }
.tf-btn.active {
    background: linear-gradient(135deg, var(--orange), #ff8533);
    color: #fff;
}

/* Podium top 3 */
.top-fans-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 16px;
    min-height: 140px;
}
.tf-podium-card {
    flex: 1;
    max-width: 110px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}
.tf-podium-1 {
    background: linear-gradient(180deg, rgba(255,193,7,0.25), rgba(255,193,7,0.08));
    border-color: rgba(255,193,7,0.4);
    min-height: 140px;
    box-shadow: 0 0 20px rgba(255,193,7,0.2);
}
.tf-podium-2 {
    background: linear-gradient(180deg, rgba(192,192,192,0.25), rgba(192,192,192,0.08));
    border-color: rgba(192,192,192,0.4);
    min-height: 120px;
}
.tf-podium-3 {
    background: linear-gradient(180deg, rgba(205,127,50,0.25), rgba(205,127,50,0.08));
    border-color: rgba(205,127,50,0.4);
    min-height: 105px;
}
.tf-podium-medal {
    font-size: 1.4rem;
    line-height: 1;
}
.tf-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.15);
    background: var(--bg-3);
}
.tf-podium-1 .tf-avatar { width: 48px; height: 48px; border-color: rgba(255,193,7,0.6); }
.tf-avatar-placeholder {
    background: linear-gradient(135deg, #6d28d9, #a78bfa);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}
.tf-podium-name {
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--text-1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.tf-podium-score {
    font-size: 0.7rem;
    color: var(--orange);
    font-weight: 800;
    font-feature-settings: "tnum";
}

/* Liste 4-10 */
.top-fans-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.tf-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.02);
    border-radius: 6px;
    transition: background 0.15s;
}
.tf-row:hover { background: rgba(255,255,255,0.05); }
.tf-rank {
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--text-3);
    min-width: 28px;
    font-feature-settings: "tnum";
}
.tf-row .tf-avatar { width: 28px; height: 28px; }
.tf-name {
    flex: 1;
    font-size: 0.85rem;
    color: var(--text-1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tf-score {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--orange);
    font-feature-settings: "tnum";
}

@media (max-width: 480px) {
    .tf-podium-card { max-width: 90px; padding: 8px 4px; }
    .tf-podium-name { font-size: 0.72rem; }
    .tf-podium-score { font-size: 0.65rem; }
    .tf-avatar { width: 36px; height: 36px; }
    .tf-podium-1 .tf-avatar { width: 42px; height: 42px; }
}
