*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

height:100vh;
display:flex;
justify-content:center;
align-items:center;
background:linear-gradient(135deg,#4f46e5,#0f172a);
overflow:hidden;
color:#fff;

}

.overlay{

position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.35);

}

.container{

position:relative;
z-index:10;
text-align:center;
padding:40px;
max-width:800px;

}

.logo{

font-size:70px;
margin-bottom:20px;

}

h1{

font-size:65px;
font-weight:700;
margin-bottom:15px;

}

p{

font-size:20px;
opacity:.9;
margin-bottom:45px;

}

.countdown{

display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-bottom:40px;

}

.box{

width:120px;
height:120px;
background:rgba(255,255,255,.12);
backdrop-filter:blur(15px);
border-radius:20px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
box-shadow:0 15px 30px rgba(0,0,0,.3);

}

.box span{

font-size:42px;
font-weight:700;

}

.box small{

font-size:15px;
opacity:.8;

}

.subscribe{

display:flex;
justify-content:center;
flex-wrap:wrap;
gap:10px;

}

.subscribe input{

width:350px;
padding:16px;
border:none;
border-radius:40px;
font-size:16px;

}

.subscribe button{

padding:16px 35px;
border:none;
border-radius:40px;
background:#ff9800;
color:#fff;
font-size:16px;
cursor:pointer;
transition:.3s;

}

.subscribe button:hover{

background:#ffb300;

}

@media(max-width:768px){

h1{

font-size:42px;

}

.box{

width:90px;
height:90px;

}

.box span{

font-size:30px;

}

.subscribe input{

width:100%;

}

}