/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* Body Styling */
body{
    background-color: #000;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Main Clock Container */
body > div{
    background: #111;
    padding: 40px 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.05),
        inset 0 0 10px rgba(255, 255, 255, 0.03);
    margin: 10px;
}

/* Day & Date Row */
#day, #month, #date, #year{
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    margin: 0 8px;
}

/* Time Row */
#hour, #min, #second{
    font-size: 60px;
    font-weight: 600;
    margin: 0 8px;
}

/* Colon Effect */
#hour::after,
#min::after{
    content: ":";
    margin-left: 8px;
    color: #555;
}

/* AM/PM */
#zone{
    font-size: 20px;
    margin-left: 10px;
    letter-spacing: 2px;
    color: #ccc;
}

/* Smooth Glow Effect */
#hour, #min, #second{
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
}
