#retro-music-player {
    border: 2px solid #a584e4;
    box-shadow: 0 0 15px #5500aa, 0 0 30px #000033 inset;
    border-radius: 8px;
    padding: 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    font-family: '04b_30__', monospace;
    color: #a584e4;
}

.player-header {
    margin-bottom: 15px;
}

.player-title {
    color: #ffcc00;
    text-shadow: 0 0 8px #ffcc00, 0 0 15px #ffcc00;
    font-size: 1.8em;
    margin: 0;
    padding: 0;
    letter-spacing: 2px;
}

.controls-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.track-info {
    font-size: 0.9em;
    color: #a584e4;
    text-shadow: 0 0 5px #a584e4;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background-color: #333366;
    border: 1px solid #a584e4;
    box-shadow: 0 0 5px #a584e4;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background-color: #ff00cc;
    box-shadow: 0 0 5px #ff00cc;
    transition: width 0.1s linear; 
}

.buttons-volume {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.control-btn {
    height: 45px;
    width: 45px;
    background-color: #000033;
    border: 2px solid #a584e4;
    border-radius: 5px;
    padding: 8px 12px;
    font-family: '04b_30__', monospace;
    font-size: 1.1em;
    color: #ffcc00;
    text-shadow: 0 0 5px #ffcc00;
    box-shadow: 0 0 10px #a584e4;
    transition: background-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.control-btn:hover {
    background-color: #000055;
    box-shadow: 0 0 15px #ffcc00, 0 0 20px #a584e4;
}

.volume-slider {
    width: 100px;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: #333366;
    border: 1px solid #ff00cc;
    box-shadow: 0 0 5px #ff00cc;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffcc00;
    box-shadow: 0 0 8px #ffcc00;
    margin-top: -4px;
    cursor: grab;
}

.volume-slider::-moz-range-thumb { /* Firefox specific */
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffcc00;
    box-shadow: 0 0 8px #ffcc00;
    cursor: grab;
}

/* Basic responsiveness for smaller screens */
@media (max-width: 400px) {
    #retro-music-player {
        width: 90%;
        padding: 15px;
    }
    .player-title {
        font-size: 1.5em;
    }
    .control-btn {
        padding: 6px 10px;
        font-size: 1em;
    }
    .control-btn img {
        height: 16px;
        width: 16px;
    }
    .volume-slider {
        width: 80px;
    }
}