#musicControl {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: transparent;
    cursor: pointer;
    z-index: 9999;
}

#audio-control {
    position: fixed;
    bottom: 20px; 
    left: 20px;
    display: none;
    cursor: pointer;
    z-index: 10000;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.bar {
    width: 6px;
    height: 100%;
    background: linear-gradient(to top, rgb(45, 34, 0), rgb(255, 210, 121));
    animation: pulse 1s infinite ease-in-out;
}

.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse {
    0%, 100% { transform: scaleY(0.4); }
    50%      { transform: scaleY(1.0); }
}

#audio-control.paused .bar {
    animation-play-state: paused;
    background: #888;
}