.player-card {
    transition: all 0.3s ease;
}
.player-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.stats-item {
    padding: 4px 10px;
    border-radius: 8px;
    background: var(--bs-border-color) !important;
    margin-bottom: 3px;
}
.stats-item .label {
    font-size: 12px;
    color: var(--bs-body-color) !important;
    margin-bottom: 2px;
}
.stats-item .value {
    font-weight: bold;
    font-size: 16px;
}
.winrate-high {
    color: #28a745;
    font-weight: bold;
}
.winrate-medium {
    color: #ffc107;
    font-weight: bold;
}
.winrate-low {
    color: #dc3545;
    font-weight: bold;
}
.hero-stats-row {
    font-size: 12px;
    padding: 4px 0;
}
.hero-stats-row:last-child {
    border-bottom: none;
}
@media (max-width: 768px) {
    .player-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .stats-item .value {
        font-size: 14px;
    }
}