.artist-track-media-link,
.artist-track-title-link {
    text-decoration: none;
    color: inherit;
}

.artist-track-title-link:hover .artist-track-title {
    color: #ff4d5a;
}

.artist-like-btn {
    border: 0;
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 999px;
    transition: .2s;
}

.artist-like-btn:hover {
    background: rgba(255,255,255,.06);
}

.artist-like-btn svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: transparent;
    stroke: #ffffff;
    stroke-width: 2;
    transition: .2s;
}

.artist-like-btn.is-liked svg {
    fill: #e50914;
    stroke: #e50914;
}

.artist-like-btn:disabled {
    cursor: default;
    opacity: 1;
}

.artist-like-count {
    min-width: 18px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,.86);
}

.artist-page {
    position: relative;
    min-height: 100vh;
    color: #fff;
    overflow: hidden;
    background: #0d0f18;
    padding: 120px 0 80px;
}

.artist-page,
.artist-page * {
    box-sizing: border-box;
}

.artist-page-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.artist-page-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.artist-page-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(10,12,20,.92) 0%, rgba(10,12,20,.78) 38%, rgba(10,12,20,.55) 100%),
        linear-gradient(to bottom, rgba(10,12,20,.18) 0%, rgba(10,12,20,.9) 100%);
}

.artist-page-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 60px;
    align-items: start;
}

.artist-main {
    min-width: 0;
}

.artist-header {
    margin-bottom: 50px;
}

.artist-name {
    margin: 0 0 24px;
    font-size: clamp(42px, 7vw, 84px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
}

.artist-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    color: rgba(255,255,255,.78);
    font-size: 15px;
}

.artist-play-btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #a044ff, #6a00ff);
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.artist-follow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: .25s;
}

.artist-follow-btn:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.artist-social {
    color: rgba(255,255,255,.8);
    font-size: 16px;
}

.artist-tabs {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.artist-tabs a {
    color: rgba(255,255,255,.82);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    transition: .25s;
}

.artist-tabs a.is-active {
    background: linear-gradient(135deg, #cf4dff, #9333ff);
    color: #fff;
    font-weight: 700;
}

.artist-track-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.artist-track-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 6px;
    border-radius: 14px;
    transition: .25s;
}

.artist-track-item:hover {
    background: rgba(255,255,255,.05);
}

.artist-track-left {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    flex: 1;
}

.artist-track-left img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.artist-track-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #fff;
}

.artist-track-artist {
    font-size: 15px;
    color: rgba(255,255,255,.68);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 560px;
}

.artist-track-right {
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(255,255,255,.75);
    flex-shrink: 0;
}

.artist-sidebar {
    padding-top: 210px;
}

.artist-chart-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    background: rgba(255,255,255,.06);
}

.artist-chart-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.artist-chart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.artist-chart-overlay h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
}

.artist-chart-overlay p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 18px;
}

.artist-top-tracks h3 {
    margin: 0 0 18px;
    font-size: 32px;
    font-weight: 500;
    color: #fff;
}

.artist-top-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.artist-top-item img {
    width: 74px;
    height: 74px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

.artist-top-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.artist-top-artist {
    color: rgba(255,255,255,.7);
    font-size: 16px;
}

@media (max-width: 991px) {
    .artist-page-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .artist-sidebar {
        padding-top: 0;
    }
}

@media (max-width: 640px) {
    .artist-page {
        padding: 90px 0 40px;
    }

    .artist-page-inner {
        padding: 0 16px;
    }

    .artist-track-item {
        flex-direction: row;
        align-items: center;
    }

    .artist-track-artist {
        max-width: 100%;
        white-space: normal;
    }
}