.stat-card {
    background: linear-gradient(145deg, #111, #2a2a2a);
    border-radius: 20px;
    padding: 25px;
}

.stat-title { color: #f4f4f4; font-size: 2rem; }
.stat-value { font-size: 50px;font-weight: bold;color: #ddd; }

.highlight { color: #EEBA2C; font-size: 5rem; }

/* LEADERBOARD */
.leaderboard-container {
    margin-top: 40px;
}

/* HEADER */
.lb-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr 1.5fr 1fr 1fr;
    padding: 15px;
    font-weight: 500;
    background: #111;
    border-radius: 10px;
    box-shadow: rgba(0,0,0,1) 0px 15px 15px;
    color: #fff;
    
}

.lb-header div {
    color: #aaa;
    cursor: pointer;
}

/* ROW */
.lb-row {
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr 1.5fr 1fr 1fr;
    padding: 15px;
    align-items: center;
    border-radius: 10px;
    margin-top: 10px;
}

/* ODD EVEN COLORS */
.lb-row:nth-child(odd) {
    background: #FFFFFF21;
}

.lb-row:nth-child(even) {
    background: #262626;
}

/* PROFILE */
.profile {
    display: flex;
    align-items: center;
}

.profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #EEBA2C;
}

/* BUTTON */
.btn-gold {
    background: #EEBA2C;
    border: none;
    color: black;
    font-size: 13px;
}


/* CARD */
.lb-card {
    background: linear-gradient(145deg, #111, #2a2a2a);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: 0.3s;
    color:#fff;
}

.lb-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.profile-img {
    width: 100%;
     
    object-fit: cover;
    border-radius: 15px;
}

/* RANK BADGE */
.rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #EEBA2C;
    color: black;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: bold;
}

/* MAIN STAT */
.stat {
    font-size: 26px;
    font-weight: bold;
}

/* SUB STATS */
.sub-stats {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #aaa;
    margin-top: 8px;
}
.traderslist
{
    text-align: center;
    color: #fff;
    font-size: 18px;
}

/* MOBILE */
@media(max-width:768px){

    .lb-header {
        display: none;
    }

    .lb-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }

    .lb-row div {
        display: flex;
        justify-content: space-between;
    }

    .lb-row div::before {
        content: attr(data-label);
        color: #aaa;
    }
    .stat-title { font-size: 1.5rem; }
.stat-value {font-size: 3rem;}
    
}