
body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background:#f4f4f4;
}

.temu-box{
    max-width:750px;
    margin:50px auto;
    background:linear-gradient(135deg,#ff6a00,#ff8c00);
    padding:35px;
    border-radius:18px;
    text-align:center;
    color:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.temu-box h2{
    font-size:26px;
    margin-bottom:15px;
}

.temu-box p{
    font-size:16px;
    line-height:1.6;
    margin-bottom:25px;
}

.countdown{
    font-size:22px;
    font-weight:bold;
    background:#fff;
    color:#ff6a00;
    display:inline-block;
    padding:10px 20px;
    border-radius:10px;
    margin-bottom:25px;
}

.temu-btn{
    display:inline-block;
    padding:15px 30px;
    font-size:18px;
    font-weight:bold;
    color:#ff6a00;
    background:#ffffff;
    border-radius:40px;
    text-decoration:none;
    animation:blink 1.2s infinite;
    transition:0.3s;
}

.temu-btn:hover{
    transform:scale(1.05);
    box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

@keyframes blink{
    0%{ box-shadow:0 0 0px rgba(255,255,255,0.7);}
    50%{ box-shadow:0 0 25px rgba(255,255,255,1);}
    100%{ box-shadow:0 0 0px rgba(255,255,255,0.7);}
}
