<style>
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #121212, #1DB954);
    font-family: Arial, sans-serif;
}

.player {
    background: #181818;
    width: 220px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    text-align: center;
    color: white;
}

.cover {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

.title {
    font-size: 18px;
    font-weight: bold;
}

.artist {
    font-size: 14px;
    color: #b3b3b3;
    margin-bottom: 20px;
}

.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.play-btn {
    background: #1DB954;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 22px;
    color: white;
    cursor: pointer;
    transition: transform 0.2s;
}

.play-btn:hover {
    transform: scale(1.1);
}

.progress-container {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 10px;
}

.progress {
    height: 100%;
    width: 0%;
    background: #1DB954;
    border-radius: 3px;
}

.time {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #b3b3b3;
    margin-bottom: 15px;
}

.volume {
    width: 100%;
}
</style>