@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #18181b 0%, #27272a 50%, #3f3f46 100%);
    min-height: 100vh
}

.clock {
    width: 150px;
    height: 150px;
    border: 8px solid #fbbf24;
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle, #3f3f46, #18181b)
}

.clock-hand {
    position: absolute;
    background: #fbbf24;
    transform-origin: bottom center;
    animation: tick 2s linear infinite
}

@keyframes tick {
    100% {
        transform: rotate(360deg)
    }
}

/* High-quality claymation background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('clay_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
}/* High-quality claymation background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('clay_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
