body {
    background-color: #0d1a26;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: sans-serif;
    color: #00ffff;
}

.clock {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3);
}

.center-circle {
    width: 15px;
    height: 15px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #ffffff;
    z-index: 4;
}

/* Markers and Numbers Styling */
.marker, .number {
    position: absolute;
    top: 46.5%;
    left: 50%;
    transform-origin: bottom center;
    font-weight: bold;
    text-shadow: 0 0 5px #00ffff;
}

.marker {
    background-color: #00ffff;
    box-shadow: 0 0 3px #00ffff;
    border-radius: 2px;
    
}

.marker.dot {
    width: 2px;
    height: 6px;
}

.marker.line {
    width: 2px;
    height: 10px;
}

.number {
    font-size: 1.5em;
    transform: translate(-50%, -125px);
}

/* Clock hands */
.hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    background-color: #00ffff;
    border-radius: 5px;
}

.hour {
    width: 6px;
    height: 60px;
    z-index: 3;
}

.minute {
    width: 4px;
    height: 80px;
    z-index: 2;
}

.second {
    width: 2px;
    height: 100px;
    z-index: 1;
}