/* ── Cercle des Légendes — Block accueil ───────────────────── */
.fc-section {
    padding: 14px 14px 0;
    margin-bottom: 16px;
}

.fc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.fc-subtitle {
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(245,158,11,0.6);
    text-transform: uppercase;
    margin-bottom: 2px;
}
.fc-title {
    font-size: 15px;
    font-weight: 900;
    background: linear-gradient(90deg, #f59e0b, #fde68a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}
.fc-link-classement {
    font-size: 9px;
    color: rgba(245,158,11,0.6);
    text-decoration: none;
    background: rgba(245,158,11,0.1);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(245,158,11,0.2);
    transition: opacity 0.2s;
}
.fc-link-classement:hover { opacity: 0.8; }

.fc-podium-wrap {
    background: linear-gradient(135deg, rgba(245,158,11,0.07), rgba(245,158,11,0.03));
    border: 1px solid rgba(245,158,11,0.15);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 10px;
}
.fc-podium {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
}
.fc-podium-slot { text-align: center; flex: 1; }
.fc-podium-avatar-wrap { position: relative; display: inline-block; margin-bottom: 5px; }
.fc-podium-crown {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
}
.fc-avatar-img {
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid rgba(245,158,11,0.3);
}
.fc-avatar-initial {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #fff;
    font-size: 18px;
}
.fc-podium-name  { font-size: 9px; color: rgba(255,255,255,0.65); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fc-podium-level { font-size: 8px; color: rgba(255,255,255,0.3); }
.fc-podium-min   { font-size: 10px; font-weight: 700; margin: 2px 0; }
.fc-podium-bar   {
    border-radius: 4px 4px 0 0;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-podium-medal { font-size: 12px; }
.fc-podium-first .fc-avatar-initial,
.fc-podium-first .fc-avatar-img { box-shadow: 0 0 18px rgba(245,158,11,0.4); }

.fc-my-pos {
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(245,158,11,0.04));
    border: 1px solid rgba(245,158,11,0.25);
    border-radius: 12px;
    padding: 11px 13px;
    margin-bottom: 10px;
}
.fc-my-inner { display: flex; align-items: center; gap: 11px; }
.fc-my-avatar-wrap { position: relative; flex-shrink: 0; }
.fc-my-level-badge {
    position: absolute;
    bottom: -3px;
    right: -3px;
    background: var(--bg-2, #0f1419);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border: 1px solid;
}
.fc-my-info { flex: 1; min-width: 0; }
.fc-my-top { display: flex; align-items: center; gap: 5px; margin-bottom: 3px; }
.fc-my-pseudo { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.9); }
.fc-my-level-label { font-size: 8px; padding: 1px 6px; border-radius: 10px; border: 1px solid; font-weight: 700; }
.fc-progress-track { background: rgba(0,0,0,0.3); border-radius: 4px; height: 5px; margin-bottom: 3px; overflow: hidden; }
.fc-progress-fill  { height: 100%; border-radius: 4px; transition: width 0.3s; }
.fc-progress-label { font-size: 8px; color: rgba(255,255,255,0.3); }
.fc-progress-left  { color: rgba(245,158,11,0.5); }
.fc-my-rank { text-align: center; flex-shrink: 0; }
.fc-my-rank-num   { font-size: 18px; font-weight: 900; line-height: 1; }
.fc-my-rank-label { font-size: 7px; color: rgba(255,255,255,0.3); }

.fc-active-count { text-align: center; font-size: 9px; color: rgba(255,255,255,0.25); margin-top: 6px; }
.fc-loading      { text-align: center; color: rgba(255,255,255,0.3); font-size: 12px; padding: 20px; }
.fc-empty        { text-align: center; color: rgba(255,255,255,0.3); font-size: 11px; }

@media (max-width: 640px) {
    .fc-podium-slot { min-width: 0; }
    .fc-my-pseudo   { font-size: 10px; }
}

/* ── PC : agrandir le Cercle des Légendes ─── */
@media (min-width: 768px) {
    .fc-section         { padding: 24px 24px 0; margin-bottom: 24px; }
    .fc-title           { font-size: 20px; }
    .fc-subtitle        { font-size: 11px; }
    .fc-link-classement { font-size: 11px; padding: 6px 14px; }
    .fc-podium-name     { font-size: 12px; }
    .fc-podium-level    { font-size: 10px; }
    .fc-podium-min      { font-size: 13px; }
    .fc-podium-medal    { font-size: 16px; }
    .fc-my-pseudo       { font-size: 14px; }
    .fc-my-rank-num     { font-size: 24px; }
    .fc-progress-label  { font-size: 10px; }
    .fc-active-count    { font-size: 11px; }
}
