*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

height:100vh;
display:flex;
justify-content:center;
align-items:center;
overflow:hidden;
background:url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1600&q=80") center center/cover;
position:relative;

}

.overlay{

position:absolute;
inset:0;
background:linear-gradient(135deg,#000000c7,#2b1d16c9,#000000b5);

}

.container{

position:relative;
z-index:2;
width:90%;
max-width:750px;
padding:60px;
text-align:center;
background:rgba(255,255,255,.08);
backdrop-filter:blur(15px);
border-radius:25px;
border:1px solid rgba(255,255,255,.15);
box-shadow:0 20px 50px rgba(0,0,0,.4);

}

.logo{

width:90px;
height:90px;
margin:auto;
border-radius:50%;
background:#fff;
color:#222;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
font-weight:700;
margin-bottom:25px;

}

.tag{

display:inline-block;
padding:10px 20px;
background:#ffffff20;
border-radius:50px;
color:#fff;
letter-spacing:1px;
margin-bottom:20px;

}

h1{

font-size:50px;
color:#fff;
margin-bottom:20px;

}

h1 span{

color:#ffc107;

}

p{

font-size:18px;
color:#ddd;
line-height:32px;
margin-bottom:35px;

}

.loader{

width:230px;
height:8px;
margin:auto;
background:#ffffff20;
border-radius:50px;
overflow:hidden;
margin-bottom:40px;

}

.loader span{

display:block;
width:40%;
height:100%;
background:#ffc107;
animation:loading 2s infinite;

}

@keyframes loading{

0%{
transform:translateX(-100%);
}

100%{
transform:translateX(350%);
}

}

.countdown{

display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;

}

.countdown div{

width:110px;
padding:20px;
background:rgba(255,255,255,.12);
border-radius:18px;

}

.countdown h2{

font-size:36px;
color:#fff;

}

.countdown small{

color:#ddd;
font-size:15px;

}

.footer{

margin-top:45px;
color:#ddd;
font-size:15px;

}

@media(max-width:768px){

.container{

padding:35px 20px;

}

h1{

font-size:34px;

}

p{

font-size:16px;
line-height:28px;

}

.countdown div{

width:80px;
padding:15px;

}

.countdown h2{

font-size:28px;

}

}

.contact-box{
margin-top:35px;
padding:30px;
background:rgba(255,255,255,.08);
border-radius:18px;
border:1px solid rgba(255,255,255,.12);
}

.contact-box h3{
color:#ffc107;
font-size:28px;
margin-bottom:15px;
}

.contact-box>p{
color:#ddd;
margin-bottom:25px;
line-height:30px;
}

.contact-item{
display:flex;
align-items:flex-start;
gap:15px;
margin-bottom:20px;
color:#fff;
text-align:left;
}

.contact-item span{
font-size:24px;
min-width:30px;
}

.contact-item p{
margin:0;
line-height:28px;
color:#fff;
}

.contact-item a{
color:#ffffff;
text-decoration:none;
transition:.3s;
}

.contact-item a:hover{
color:#ffc107;
}

@media(max-width:768px){

.contact-box{
padding:20px;
}

.contact-box h3{
font-size:22px;
}

.contact-item{
font-size:15px;
}

}