.player-stats {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 20px;
}

.player-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-stats .stat-content {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.player-stats .stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #7aff7a;
}

.player-stats .stat-label {
    font-size: 12px;
    opacity: 0.8;
}

