*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background: linear-gradient(45deg, #0a192f, #112240, #233554);
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.clock{
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.clock:hover {
    transform: scale(1.02);
}

.clock .number{
    --rotation:0;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    transform: rotate(var(--rotation));
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1.5rem;
}

.clock .number1{ 
    --rotation:30deg;
}
.clock .number2{ 
    --rotation:60deg;
}
.clock .number3{ 
    --rotation:90deg;
}
.clock .number4{ 
    --rotation:120deg;
}
.clock .number5{ 
    --rotation:150deg;
}
.clock .number6{ 
    --rotation:180deg;
}
.clock .number7{ 
    --rotation:210deg;
}
.clock .number8{ 
    --rotation:240deg;
}
.clock .number9{ 
    --rotation:270deg;
}
.clock .number10{ 
    --rotation:300deg;
}
.clock .number11{ 
    --rotation:330deg;
}
.clock .number12{ 
    --rotation:360deg;
}

.clock .hand{
    --rotation: 0;
    position: absolute;
    bottom: 50%;
    left: 50%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9));
    border: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transform-origin: bottom;
    z-index: 10;
    transform: translateX(-50%) rotate(calc(var(--rotation) * 1deg));
    transition: transform 0.2s cubic-bezier(0.4, 2.08, 0.55, 0.44);
}

.clock::after{
    content: '';
    position: absolute;
    background: #64ffda;
    z-index: 11;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 0 0 10px #64ffda;
}

.clock .hand.second{
    width: 2px;
    height: 45%;
    background: #64ffda;
    box-shadow: 0 0 5px #64ffda;
}

.clock .hand.minute{
    width: 5px;
    height: 40%;
    background: rgba(255, 255, 255, 0.8);
}

.clock .hand.hour{
    width: 8px;
    height: 35%;
    background: rgba(255, 255, 255, 0.9);
}

/* Add tick marks */
.clock::before {
    content: '';
    position: absolute;
    width: 95%;
    height: 95%;
    top: 2.5%;
    left: 2.5%;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.container {
    text-align: center;
}

h1 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}