*{
box-sizing:border-box;
margin:0;
padding:0;
}


body{

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

padding:20px;

font-family:'Poppins',sans-serif;

background:#0B1F3A;

animation:bgMove 8s infinite alternate;

}




@keyframes bgMove{

from{
background:#0B1F3A;
}

to{
background:#12345A;
}

}





.container{

max-width:950px;

width:100%;

background:white;

border-radius:30px;

padding:55px 40px;

text-align:center;

border:4px solid #F97316;

box-shadow:
0 20px 60px rgba(0,0,0,.4);

animation:show 1s ease;


}




@keyframes show{

from{

opacity:0;

transform:translateY(40px);

}


to{

opacity:1;

transform:translateY(0);

}

}





.logo{

width:180px;

display:block;

margin:0 auto 30px;

animation:float 3s infinite;


}



@keyframes float{

50%{

transform:translateY(-12px);

}

}





.badge{

display:inline-block;

background:#F97316;

color:white;

padding:12px 25px;

border-radius:50px;

font-weight:600;

animation:pulse 2s infinite;

}





@keyframes pulse{

50%{

box-shadow:0 0 25px #F97316;

}

}





h1{

margin-top:25px;

font-size:38px;

color:#0B1F3A;

}




h2{

margin-top:10px;

color:#F97316;

font-size:22px;

}




.description{

margin:25px auto 40px;

max-width:700px;

color:#475569;

line-height:1.8;

}




.timer{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}




.box{

width:130px;

background:white;

border:3px solid #F97316;

border-radius:20px;

padding:20px;

animation:bounce 3s infinite;

}




@keyframes bounce{

50%{

transform:translateY(-8px);

}

}





.number{

font-size:45px;

font-weight:700;

color:#F97316;

}



.box span{

color:#0B1F3A;

font-weight:600;

}




.progress-area{

margin:45px auto;

max-width:600px;

}




.progress-title{

display:flex;

justify-content:space-between;

color:#0B1F3A;

font-weight:600;

}




.progress{

height:15px;

background:#ddd;

border-radius:20px;

overflow:hidden;

margin-top:10px;

}




#progressBar{

height:100%;

width:0%;

background:#F97316;

transition:1s;

}





.motto{

margin-top:35px;

padding:25px;

background:#F97316;

color:white;

border-radius:18px;

font-size:18px;

animation:glow 2s infinite alternate;

}





@keyframes glow{

from{

box-shadow:0 0 10px #F97316;

}

to{

box-shadow:0 0 35px #F97316;

}

}




footer{

margin-top:35px;

color:#64748b;

}



@media(max-width:600px){

h1{

font-size:25px;

}


.box{

width:90px;

}


.number{

font-size:30px;

}


.logo{

width:130px;

}

}