.down-bar {
    background: rgba(65,65,65,0.3);
    backdrop-filter: blur(20px);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    text-align: center;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    border-top: 1px solid rgba(0,0,0,0.1);
    transition: .3s;
}

.player-btn {
    aspect-ratio: 1 / 1;
    width: 24px;
    margin: auto;
    font-size: 16px;
}

.down-bar-actions{
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 3;
    max-width: 200px;
}

.close-button {
    border-radius: 100%;
    color: #CCC;
    font-size: 23px;
    padding: 8px;
}

.close-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #FFF;
}
.sound-info {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    transition: .3s;
}

.sound-info:hover {
    background-color: rgba(var(--primary-rgb), 0.3);
}

.sound-image{
    background-color: #CCC;
    background-size: cover;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    margin: auto;
    width: 64px;
}
@media (max-width: 768px) {
    .down-bar > div {
        flex-wrap: wrap;
        gap: 10px;
    }

    .down-bar > div > div {
        min-width: auto;
    }

    .down-bar-actions {
        max-width: 100%;
    }

    #volumeSlider {
        width: 60px;
    }

    .down-bar.expanded #multimedia-right {
        width: 90%;
    }

    .down-bar.expanded .sound-image {
        width: 300px !important;
        height: 300px !important;
    }

    .down-bar.expanded #track-name {
        font-size: 24px !important;
    }

    .down-bar.expanded #track-artist {
        font-size: 18px !important;
    }
}