.wmp-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.8);
    color: white;
    display: flex;
    padding: 15px;
    box-sizing: border-box;
}

.wmp-cover img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.wmp-lyrics {
    flex: 1;
    padding: 0 20px;
    overflow-y: auto;
    max-height: 100px;
}

.wmp-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wmp-playlist {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.wmp-playlist.active {
    display: block;
}
