/* Music Player Control */
.music-control {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10000;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.music-control:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.music-control i {
    color: #ffffff;
    font-size: 18px;
}

.music-control.playing {
    background: rgba(0, 255, 200, 0.2);
    border-color: rgba(0, 255, 200, 0.4);
    box-shadow: 0 0 10px rgba(0, 255, 200, 0.2);
}

@media screen and (max-width: 736px) {
    .music-control {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
}