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

body{

height:100vh;
overflow:hidden;
display:flex;
justify-content:center;
align-items:center;
background:#070A14;
position:relative;

}

.bg{

position:absolute;
width:250%;
height:250%;

background:

radial-gradient(circle at 20% 20%,#5b21ff55,transparent 30%),
radial-gradient(circle at 80% 30%,#00D4FF55,transparent 25%),
radial-gradient(circle at 50% 80%,#ff4ecd55,transparent 30%);

animation:rotate 20s linear infinite;

filter:blur(60px);

}

@keyframes rotate{

100%{

transform:rotate(360deg);

}

}

.glass{

position:relative;

width:90%;
max-width:800px;

padding:60px;

text-align:center;

background:rgba(255,255,255,.06);

border:1px solid rgba(255,255,255,.15);

backdrop-filter:blur(18px);

border-radius:30px;

box-shadow:
0 20px 60px rgba(0,0,0,.45);

}

.tag{

display:inline-block;

padding:10px 20px;

background:rgba(255,255,255,.08);

border-radius:50px;

margin-bottom:25px;

color:#ddd;

font-size:14px;

}

h1{

font-size:58px;

font-weight:700;

line-height:1.1;

color:white;

margin-bottom:20px;

}

p{

font-size:18px;

color:#bfbfbf;

max-width:600px;

margin:auto;

line-height:1.7;

}

.countdown{

display:flex;

justify-content:center;

gap:20px;

margin:45px 0;

flex-wrap:wrap;

}

.box{

width:120px;

height:120px;

background:rgba(255,255,255,.07);

border-radius:20px;

display:flex;

justify-content:center;

align-items:center;

flex-direction:column;

border:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.box:hover{

transform:translateY(-8px);

background:rgba(255,255,255,.12);

}

.box h2{

font-size:42px;

color:white;

}

.box span{

color:#aaa;

}

.subscribe{

display:flex;

justify-content:center;

margin-top:20px;

}

.subscribe input{

width:65%;

padding:18px;

background:rgba(255,255,255,.08);

border:none;

outline:none;

border-radius:15px 0 0 15px;

color:white;

font-size:16px;

}

.subscribe input::placeholder{

color:#aaa;

}

.subscribe button{

padding:18px 30px;

border:none;

background:linear-gradient(135deg,#5b21ff,#00d4ff);

color:white;

font-weight:600;

cursor:pointer;

border-radius:0 15px 15px 0;

transition:.3s;

}

.subscribe button:hover{

transform:scale(1.05);

}

@media(max-width:768px){

.glass{

padding:35px;

}

h1{

font-size:40px;

}

.box{

width:90px;
height:90px;

}

.box h2{

font-size:30px;

}

.subscribe{

flex-direction:column;

}

.subscribe input{

width:100%;
border-radius:15px;

margin-bottom:15px;

}

.subscribe button{

border-radius:15px;

}

}
