
#winamp-player {
    background: #111;
    color: #0f0;
    padding: 20px;
    max-width: 400px;
    font-family: monospace;
    border-radius: 8px;
}
.winamp-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.equalizer {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}
.equalizer .bar {
    width: 6px;
    height: 30px;
    background: lime;
    animation: equalize 1s infinite ease-in-out;
}
.equalizer .bar1 { animation-delay: 0s; }
.equalizer .bar2 { animation-delay: 0.2s; }
.equalizer .bar3 { animation-delay: 0.4s; }
.equalizer .bar4 { animation-delay: 0.6s; }
.equalizer .bar5 { animation-delay: 0.8s; }

@keyframes equalize {
    0%, 100% { height: 10px; }
    50% { height: 30px; }
}
