.leaderboard-list{
list-style:none;
margin:0;
padding:0;
}

.leaderboard-item{
    background:#1f1f1f;
    padding:12px;
    border-radius:12px;
    margin-bottom:10px;

    display:flex;
    flex-direction: row;        /* مهم */
    align-items:center;
    justify-content:space-between;
}

.rank-number{
    color:#c5c5c5;
    font-size:15px;
    width:26px;
    text-align:center;
}

.info-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: flex-start;
}


.avatar-frame{
width:48px;
height:48px;
border-radius:50%;
border:2px solid transparent;
overflow:hidden;
}

.avatar-img-sm{
width:100%;
height:100%;
border-radius:50%;
object-fit:cover;
}

.gold{border-color:gold;}
.silver{border-color:silver;}
.bronze{border-color:#cd7f32;}

.username{
color:#fff;
font-size:14px;
}

.score-box{
    display:flex;
    align-items:center;
    gap:6px;
    margin-right:auto;
}

.score.white{
color:#fff;
font-size:16px;
font-weight:700;
}

.star-icon{
width:18px;
height:18px;
}

.leaderboard-current-user{
    background:#201e27;             /* یکم روشن‌تر از بقیه */
    border:1px solid #9b63ff;       /* استروک بنفش تمیز */
    padding:12px;
    border-radius:12px;

    display:flex;
    flex-direction: row;
    align-items:center;
    justify-content:space-between;

    margin-top:16px;

}

.profile-badges {
    margin-top: 2px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.badge-wrapper {
    position: relative;
    width: 22px;
    height: 30px;
}

.badge-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    cursor: pointer;
}

.badge-tooltip {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    font-size: 12px;
    border-radius: 6px;
    padding: 3px 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
}