.asp-player {
    background: #0b1c3d;
    padding: 20px;
    border-radius: 12px;
    color: white;
    text-align: center;
    max-width: 600px;
    margin: auto;
}

#visualizer {
    width: 100%;
    height: 120px;
    background: black;
    margin: 15px 0;
    border-radius: 8px;
}

#playlist {
    list-style: none;
    padding: 0;
}

#playlist li {
    cursor: pointer;
    padding: 8px;
    border-bottom: 1px solid #333;
}

#playlist li:hover {
    background: #1a3a7a;
}

button {
    background: red;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
}