
.artist-page .main-content {
    padding-top: 0 !important;
}

body.artist-page {
    background: var(--bg-page) !important;
    min-height: 100vh;
}

.artist-page section,
body.artist-page section {
    background: transparent;
}

.artist-detail-page {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent !important;
}

.artist-hero-section {
    position: relative;
    width: 100%;
    height: 480px;
    margin-bottom: 40px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.artist-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 20%;
    filter: blur(20px) brightness(0.6);
    transform: scale(1.1);
    z-index: 0;
}

.artist-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18, 18, 23, 0.2) 0%, rgba(18, 18, 23, 0.8) 50%, rgba(18, 18, 23, 1) 100%);
    z-index: 1;
}

.artist-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max-width, 1400px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 40px) 60px;
}

.artist-hero-main {
    display: flex;
    align-items: flex-end;
    gap: 40px;
}

.artist-hero-avatar {
    flex-shrink: 0;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    background: #1a1a1a;
    position: relative;
}

.artist-hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist-hero-avatar:hover img {
    transform: scale(1.05);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.2);
    background: #2a2a2a;
}

.artist-hero-info {
    flex: 1;
    color: #ffffff;
    padding-bottom: 10px;
}

.artist-name {
    font-size: 4rem;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 16px;
}

.verified-badge {
    font-size: 0.5em;
    color: var(--primary-color, #22c55e);
    vertical-align: middle;
}

.artist-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.meta-tag {
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.meta-tag.genre {
    background: var(--primary-color, #22c55e);
    color: #000;
    border-color: var(--primary-color, #22c55e);
    font-weight: 700;
}

.artist-bio {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin-bottom: 32px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}

.artist-actions {
    display: flex;
    gap: 16px;
}

.artist-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-back {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-website {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-website:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .artist-hero-section {
        height: auto;
        padding-top: 120px;
    }
    
    .artist-hero-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }
    
    .artist-hero-avatar {
        width: 160px;
        height: 160px;
    }
    
    .artist-name {
        font-size: 3rem;
        justify-content: center;
    }
    
    .artist-meta-tags {
        justify-content: center;
    }
    
    .artist-bio {
        margin: 0 auto 24px;
    }
    
    .artist-actions {
        justify-content: center;
    }
}

.albums-section {
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}

.albums-section .container {
    max-width: var(--container-max-width, 1400px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 40px);
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.album-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
}
a.album-card,
a.album-card:hover,
a.album-card:visited {
    color: inherit;
    text-decoration: none;
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.album-artwork {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.album-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-card:hover .album-artwork img {
    transform: scale(1.1);
}

.exclusive-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color, #22c55e);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.album-info {
    padding: 16px;
}

.album-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-artist {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.track-count {
    color: rgba(255, 255, 255, 0.5);
}

.album-price {
    color: var(--primary-color, #22c55e);
    font-weight: 600;
}
