*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:sans-serif;
}

body{
display:flex;
justify-content:center;
align-items:center;
min-height:100vh;
background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
}

/* CLOCK BODY */

.clock{
position:relative;
width:380px;
height:380px;
border-radius:50%;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(10px);
border:6px solid rgba(255,255,255,0.2);
box-shadow:
0 0 40px rgba(0,0,0,0.5),
inset 0 0 30px rgba(0,0,0,0.6);
}

/* NUMBERS */

.numbers{
position:absolute;
width:100%;
height:100%;
}

.numbers span{
position:absolute;
inset:20px;
text-align:center;
transform:rotate(calc(30deg * var(--i)));
}

.numbers span b{
display:inline-block;
color:#fff;
font-size:22px;
transform:rotate(calc(-30deg * var(--i)));
}

/* HAND BASE */

.hand{
position:absolute;
width:100%;
height:100%;
display:flex;
justify-content:center;
align-items:flex-end;
}



.hand i{
position:absolute;
bottom:50%;
border-radius:10px;
}



.hour i{
width:8px;
height:90px;
background:#00bfff;
box-shadow:0 0 15px #00bfff;
}



.min i{
width:5px;
height:130px;
background:#ffffff;
box-shadow:0 0 15px white;
}



.sec i{
width:3px;
height:160px;
background:#ff3e3e;
box-shadow:0 0 20px #ff3e3e;
}



.center-dot{
position:absolute;
width:16px;
height:16px;
background:white;
border-radius:50%;
top:50%;
left:50%;
transform:translate(-50%,-50%);
z-index:10;
box-shadow:0 0 10px white;
}