body{
margin:0;
background:black;
font-family:Arial;
}

.player{
position:relative;
height:100vh;
width:100%;
}

video{
width:100%;
height:100%;
}

.controls{
position:absolute;
bottom:0;
width:100%;
padding:20px;
background:linear-gradient(transparent,black);
}

.row{
display:flex;
gap:10px;
}

button,select{
background:#111;
border:none;
color:white;
padding:6px 12px;
cursor:pointer;
}

.progressArea{
height:5px;
background:#333;
margin-bottom:10px;
cursor:pointer;
}

.progress{
height:100%;
width:0;
background:red;
}

.spinner{

position:absolute;

top:50%;

left:50%;

transform:translate(-50%,-50%);

width:50px;

height:50px;

border:5px solid #333;

border-top:5px solid red;

border-radius:50%;

animation:spin 1s linear infinite;

display:none;

}

@keyframes spin{
100%{transform:rotate(360deg);}
}