/*==========================
      ARTIST PAGE
==========================*/

.artist-page {
    left: 30px;
    top: 170px;
    width: 380px;
    max-height: 70vh;
    overflow-y: auto;
    background: rgba(10, 10, 15, 0.92) !important;
    border: 2px solid #6b5b7a !important;
    box-shadow: 0 0 50px rgba(100, 70, 150, 0.6) !important;
    z-index: 12 !important;
}

.artist-content {
    padding: 20px !important;
    color: #f0e8f0 !important;
    font-size: 14px;
    line-height: 1.8;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.95) !important;
}

.artist-content h2 {
    font-size: 24px;
    color: #e8d8f0;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.artist-content h3 {
    font-size: 17px;
    color: #c8b8d8;
    letter-spacing: 1px;
    margin: 12px 0 6px 0;
}

.artist-content .divider {
    border: none;
    border-top: 1px solid rgba(180, 160, 200, 0.12);
    margin: 14px 0;
}

.artist-bio {
    font-style: italic;
    color: #c0b8c8;
    font-size: 13px;
    margin: 4px 0;
}

.song-list {
    list-style: none;
    padding: 0;
    margin: 6px 0;
}

.song-list li {
    padding: 4px 0 4px 20px;
    position: relative;
    color: #d8d0e0;
    font-size: 13.5px;
    border-bottom: 1px solid rgba(180, 160, 200, 0.04);
}

.song-list li::before {
    content: "♪";
    position: absolute;
    left: 0;
    color: #6b5b7a;
    font-size: 14px;
}

.artist-page .back-home {
    display: inline-block;
    margin-bottom: 12px;
    color: #b8a8c8;
    text-decoration: none;
    font-family: monospace;
    font-size: 12px;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.artist-page .back-home:hover {
    color: #e8d8f0;
    border-bottom-color: #6b5b7a;
    padding-left: 4px;
}

.artist-page::-webkit-scrollbar {
    width: 5px;
}

.artist-page::-webkit-scrollbar-thumb {
    background: #6b5b7a;
    border-radius: 10px;
}

.artist-page::-webkit-scrollbar-track {
    background: transparent;
}

/*==========================
      MOBILE
==========================*/

@media (max-width: 900px) {
    .artist-page {
        left: 15px;
        top: 140px;
        width: 280px;
        max-height: 70vh;
    }
    .artist-content {
        font-size: 12px;
        padding: 14px !important;
    }
    .artist-content h2 {
        font-size: 19px;
    }
    .artist-content h3 {
        font-size: 15px;
    }
    .song-list li {
        font-size: 12px;
    }
}