body {
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Arial', sans-serif;
}

.winamp-container {
    background: #343434;
    width: 320px;
    padding: 10px;
    border: 2px solid #555;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
}

.display {
    background: #000;
    color: #00ff00;
    padding: 10px;
    border: 2px inset #444;
    margin-bottom: 10px;
    font-family: 'Courier New', Courier, monospace;
}

#status { font-size: 10px; color: #00aa00; }
#track-title { font-weight: bold; font-size: 14px; margin-top: 5px; }

.time-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

#seek-bar { flex-grow: 1; accent-color: #00ff00; }

.controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.controls button {
    background: #4a4a4a;
    border: 1px solid #777;
    color: white;
    padding: 8px;
    cursor: pointer;
    font-size: 16px;
    width: 50px;
}

.controls button:hover { background: #666; }
.controls button:active { border: 1px inset #fff; }

.volume-section {
    display: flex;
    align-items: center;
    color: #ccc;
    font-size: 12px;
    margin-bottom: 10px;
}

#volume-bar { width: 100%; margin-left: 10px; accent-color: #00ff00; }

.playlist-box {
    background: #000;
    height: 120px;
    overflow-y: auto;
    border: 1px solid #555;
}

#playlist {
    list-style: none;
    padding: 0;
    margin: 0;
}

#playlist li {
    padding: 5px 10px;
    color: #00ff00;
    font-size: 12px;
    cursor: pointer;
    border-bottom: 1px solid #222;
    white-space: nowrap;
    overflow: hidden;
}

#playlist li:hover { background: #003300; }
#playlist li.active { background: #005500; color: #fff; }
