/* Player Page Styles */

/* Player-specific adjustments to team page styles */
.player-team-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
}

/* Social Media Icons */
.team-social-links {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
}

.team-social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.team-social-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 4px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #1e293b;
}

.team-social-icon:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-2px);
}

.team-social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.player-photo-large {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.1);
}

/* Statistics Highlights */
.stats-highlights {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 20px;
    background: white;
    border-bottom: 1px solid var(--secondary-light);
}

.stat-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stat-highlight-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.stat-highlight-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .player-photo-large {
        width: 140px;
        height: 140px;
    }

    .player-team-logo {
        width: 24px;
        height: 24px;
    }

    .stats-highlights {
        gap: 30px;
        padding: 30px 20px;
    }

    .stat-highlight-value {
        font-size: 36px;
    }

    .stat-highlight-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .stats-highlights {
        flex-direction: column;
        gap: 24px;
    }

    .stat-highlight-value {
        font-size: 32px;
    }
}
