.top-traders-grid{
    display:grid;
    gap:20px;
    grid-template-columns: repeat(3,1fr);
}

.tt-card{
    padding:16px;
    border-radius:12px;
    text-align:center;
    color:#fff;
}

.tt-avatar img{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:12px;
}

.tt-name{
    font-weight:bold;
    font-size:16px;
    margin-bottom:6px;
}

.tt-rank{
    font-size:14px;
    color:#fff;
}

@media(max-width:768px){
    .top-traders-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:480px){
    .top-traders-grid{grid-template-columns:1fr;}
}
