
body {
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
    background-image: url("https://images.pexels.com/photos/33676574/pexels-photo-33676574.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* Dark overlay for readability */
    backdrop-filter: blur(5px);
    z-index: 0;
}

.watch {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.08); 
    padding: 30px 50px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.4);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    max-width: 90%;
}

.watch:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

#time {
    font-size:clamp(40px, 80vw, 80px);
    font-weight: bold;
    color: #00ffe7;
    text-shadow: 0 0 20px #00ffe7, 0 0 40px #00ffe7;
    letter-spacing: 3px;
    animation: pulse 1.2s infinite alternate;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 15px #00ffe7, 0 0 30px #00ffe7;
    }
    100% {
        text-shadow: 0 0 25px #00ffe7, 0 0 60px #00ffe7;
    }
}

#date {
    margin-top: 15px;
    font-size: clamp(16px, 2.5vw, 24px);
    color: #fff;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Responsive  */
@media (max-width: 600px) {
    .watch {
        padding: 20px 25px;
        
    }
    #time{
        font-size:clamp(10px, 20vw, 30px);
    }

}





