/* Artist Profile Page Styles */
.artist-profile-container {
    min-height: 100vh;
}

.artist-header {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
}

.artist-info {
    position: relative;
    z-index: 1;
    color: white;
}

.artist-avatar-large {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    margin-bottom: 16px;
}

.artist-info h1 {
    font-size: 48px;
    margin-bottom: 8px;
}

.verified-badge {
    display: inline-block;
    background: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 16px;
}

.artist-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.artist-stats span {
    font-size: 14px;
}

.artist-stats i {
    margin-right: 6px;
}

/* Artist Content */
.artist-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.artist-bio {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
}

.artist-bio h2 {
    margin-bottom: 16px;
    font-size: 20px;
}

.artist-bio p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .artist-header {
        height: 300px;
        padding: 20px;
    }
    
    .artist-avatar-large {
        width: 100px;
        height: 100px;
    }
    
    .artist-info h1 {
        font-size: 28px;
    }
    
    .artist-stats {
        gap: 12px;
    }
}