.player-header {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.player-photo-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
}

.player-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.jersey-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #FFD700;
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.market-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #e9ecef;
}

.stat-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    opacity: 0.1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 0.5rem 0;
}

.stat-change {
    font-size: 0.875rem;
    font-weight: 600;
}

.stat-change.positive {
    color: #28a745;
}

.stat-change.negative {
    color: #dc3545;
}

.stat-progress {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    margin-top: 0.75rem;
    overflow: hidden;
}

.stat-progress-bar {
    height: 100%;
    background: #FFD700;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-tabs {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 1.5rem;
}

.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    margin-right: 0.5rem;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: #000;
}

.nav-tabs .nav-link.active {
    color: #000;
    border-bottom: 3px solid #FFD700;
    background: transparent;
}

.similar-player-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.similar-player-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.similar-player-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* Player Badges */
.player-badge-hot {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    animation: hotPulse 1.5s ease-in-out infinite;
}

.player-badge-new {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

.player-badge-gem {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

@keyframes hotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Trend Colors */
.text-purple {
    color: #7c3aed !important;
}

.bg-purple {
    background-color: #7c3aed !important;
    color: #fff;
}

/* Next Match */
.next-match-teams {
    min-height: 80px;
}

.team-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
}

/* Stat Value Colors */
.stat-value.text-success {
    color: #10b981 !important;
}

.stat-value.text-danger {
    color: #ef4444 !important;
}

.stat-value.text-info {
    color: #0ea5e9 !important;
}
