.single_song .ssong_header.blur {
    position: relative;
    padding: 30px 30px 250px;
    color: white;
    overflow: hidden;
}

.single_song .ssong_header.blur .blur_img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    background: url('{{t_thumbnail}}') no-repeat center center / cover;
    filter: blur(10px); /* Blur-Effekt */
    z-index: 1;
}

/* Overlay mit deinem Verlauf */
.single_song .ssong_header.blur::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        #171719 0%,
        rgba(23, 23, 25, 0.7) 40%,
        rgba(23, 23, 25, 0.3) 80%,
        rgba(23, 23, 25, 0.1) 100%
    );
    z-index: 2; /* Über dem Blur */
}

.single_song .ssong_header.blur > *:not(.blur_img) {
    position: relative;
    z-index: 3; /* Über allem */
}

.mus_track_btm_row {
    padding-top: 20px;
}









/* Social Links in Sidebar - Nur Desktop */
.sidebar_social_links {
    display: none; /* Standardmäßig ausgeblendet */
    padding: 20px 30px;
    border-top: 1px solid #252525;
    margin-top: 20px;
}

.sidebar_social_links .social_icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sidebar_social_links .social_icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    color: #7E7E7E;
}

.sidebar_social_links .social_icon:hover {
    background: var(--main-color);
    color: #fff;
    transform: translateY(-2px);
}

.sidebar_social_links .social_icon svg {
    width: 18px;
    height: 18px;
}

/* Nur auf Desktop anzeigen */
@media (min-width: 992px) {
    .sidebar_social_links {
        display: block;
    }
}