.vibewave-artist-page .artist-scrollable-content {
    gap: 28px;
}

.vibewave-artist-page .singer-page {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.vibewave-artist-page .singer-row-top {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 24px;
}

.vibewave-artist-page .artist-cover-card {
    background: linear-gradient(145deg, #1e1a2e, #0c0c16);
    border-radius: 32px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.5);
}

.vibewave-artist-page .artist-avatar {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 36px;
    overflow: hidden;
    background: linear-gradient(135deg, #8b5cf6, #c084fc, #4f46e5);
    box-shadow: 0 15px 30px -8px rgba(139,92,246,0.4);
}

.vibewave-artist-page .artist-avatar img,
.vibewave-artist-page .album-mini-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vibewave-artist-page .artist-info-card {
    background: rgba(18, 18, 24, 0.5);
    backdrop-filter: blur(4px);
    border-radius: 32px;
    padding: 24px 28px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vibewave-artist-page .artist-name {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(120deg, #fff, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

.vibewave-artist-page .artist-bio {
    font-size: 0.9rem;
    color: #c7c7d0;
    line-height: 1.5;
    margin-bottom: 20px;
}

.vibewave-artist-page .artist-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.vibewave-artist-page .meta-badge {
    background: rgba(139,92,246,0.15);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #c084fc;
}

.vibewave-artist-page .btn-play-all {
    background: #8b5cf6;
    border: none;
    padding: 12px 28px;
    border-radius: 60px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 6px 14px rgba(139,92,246,0.3);
}

.vibewave-artist-page .btn-play-all:hover:not(:disabled) {
    background: #a78bfa;
    transform: scale(1.02);
}

.vibewave-artist-page .btn-play-all:disabled {
    opacity: 0.55;
    cursor: default;
}

.vibewave-artist-page .singer-row-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vibewave-artist-page .songs-section,
.vibewave-artist-page .albums-section {
    background: rgba(18, 18, 24, 0.4);
    border-radius: 28px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.03);
    min-width: 0;
}

.vibewave-artist-page .section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(139,92,246,0.2);
    padding-bottom: 10px;
}

.vibewave-artist-page .section-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.vibewave-artist-page .song-list-custom {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vibewave-artist-page .song-row-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.vibewave-artist-page .song-row-custom:hover {
    background: rgba(139,92,246,0.1);
}

.vibewave-artist-page .song-left-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 2;
    min-width: 0;
}

.vibewave-artist-page .song-number-custom {
    width: 30px;
    color: #8b5cf6;
    font-size: 0.8rem;
    font-weight: 500;
}

.vibewave-artist-page .song-info-custom {
    min-width: 0;
}

.vibewave-artist-page .song-info-custom h4 {
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vibewave-artist-page .song-info-custom p {
    font-size: 0.65rem;
    color: #71717a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vibewave-artist-page .song-duration-custom {
    font-size: 0.7rem;
    color: #8b8b9a;
    padding-left: 12px;
    flex-shrink: 0;
}

.vibewave-artist-page .active-song-highlight {
    background: rgba(139,92,246,0.2);
    border-left: 3px solid #8b5cf6;
}

.vibewave-artist-page .album-grid-singer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.vibewave-artist-page .album-mini-card {
    background: rgba(30,30,38,0.6);
    border-radius: 20px;
    padding: 12px;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
    color: inherit;
    text-decoration: none;
}

.vibewave-artist-page .album-mini-card:hover {
    background: rgba(139,92,246,0.15);
    transform: translateY(-3px);
}

.vibewave-artist-page .album-mini-cover {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 12px;
}

.vibewave-artist-page .album-mini-card h4 {
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vibewave-artist-page .album-mini-card p {
    font-size: 0.6rem;
    color: #8b5cf6;
    margin-top: 4px;
}

.vibewave-artist-page .artist-empty-note {
    color: #8b8b9a;
    font-size: 0.85rem;
}

.vibewave-artist-page .new-track-item.active-song {
    background: rgba(139,92,246,0.16);
}

@media (max-width: 1200px) {
    .vibewave-artist-page .artist-name { font-size: 2rem; }
}

@media (max-width: 992px) {
    .vibewave-artist-page .singer-row-top,
    .vibewave-artist-page .singer-row-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vibewave-artist-page .right-panel { display: none; }
    .vibewave-artist-page .album-grid-singer { grid-template-columns: 1fr; }
}

/* ── Artist hero refined ──────────────────────────────────────────────── */
.artist-hero-refined {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 24px 0 18px;
}

.artist-hero-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #8b5cf6, #c084fc, #4f46e5);
    box-shadow: 0 12px 28px -6px rgba(139, 92, 246, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.artist-hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artist-hero-info {
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .artist-hero-refined { gap: 20px; }
    .artist-hero-avatar { width: 110px; height: 110px; font-size: 2.4rem; }
}

@media (max-width: 560px) {
    .artist-hero-refined { flex-direction: column; align-items: flex-start; gap: 16px; padding: 16px 0 12px; }
    .artist-hero-avatar { width: 96px; height: 96px; font-size: 2rem; }
    .vibewave-artist-page .artist-name { font-size: 1.9rem; }
}

/* ── Play-all toggle state (shared: artist + album) ──────────────────── */
.btn-play[data-queue-many-toggle].is-playing {
    background: rgba(139, 92, 246, 0.35);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.5);
}
