*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Inter", sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap{
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#greeting{
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
}

#clock{
    display: flex;
    justify-content: center;
    gap: 10px;
}

#clock span{
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #ffffff;
    color: #333;
    font-size: 28px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Mobile Responsive */
@media (max-width: 600px){
    .wrap{
        padding: 25px;
        margin: 20px;
    }

    #greeting{
        font-size: 24px;
    }

    #clock span{
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 20px;
    }
}