body, html {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
overflow: hidden;
}
#controls {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
display: flex;
align-items: center;
gap: 10px;
background: rgba(0, 0, 0, 0.6);
padding: 10px;
border-radius: 8px;
z-index: 999;
}
#progress {
width: 250px;
}
#volume {
width: 100px;
}
button {
background: #0078ff;
color: white;
border: none;
padding: 5px 10px;
border-radius: 6px;
cursor: pointer;
}
#unmute {
position: absolute;
top: 20px;
right: 20px;
z-index: 1000;
background: #0078ff;
color: white;
border: none;
padding: 8px 12px;
border-radius: 6px;
cursor: pointer;
}