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

body{
  min-height:100vh;
  background:#000;
  overflow:hidden;
  color:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
}

.bg::before,
.bg::after{
  content:'';
  position:absolute;
  width:500px;
  height:500px;
  border-radius:50%;
  filter:blur(120px);
  animation:pulse 6s infinite alternate;
}

.bg::before{
  background:#00e1ff;
  top:-100px;
  left:-100px;
}

.bg::after{
  background:#ff00d4;
  bottom:-100px;
  right:-100px;
}

.container{
  width:100%;
  max-width:1100px;
  padding:20px;
  position:relative;
  z-index:2;
}

.card{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  backdrop-filter:blur(20px);
  border-radius:40px;
  padding:60px 40px;
  text-align:center;
  box-shadow:0 20px 60px rgba(0,0,0,0.5);
}

.logo{
  width:90px;
  height:90px;
  margin:0 auto 30px;
  border-radius:50%;
  background:linear-gradient(45deg,#00e1ff,#8a2be2);
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:40px;
  font-weight:bold;
  animation:spin 8s linear infinite;
}

h1{
  font-size:70px;
  line-height:1.1;
  margin-bottom:25px;
}

h1 span{
  display:block;
  background:linear-gradient(90deg,#00e1ff,#ff00d4);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

p{
  font-size:20px;
  color:#d1d1d1;
  max-width:750px;
  margin:0 auto 50px;
  line-height:1.7;
}

.countdown{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:20px;
  margin-bottom:50px;
}

.countdown div{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  padding:30px;
  border-radius:25px;
  transition:0.4s;
}

.countdown div:hover{
  transform:translateY(-10px);
}

.countdown h2{
  font-size:48px;
  color:#00e1ff;
  margin-bottom:10px;
}

.subscribe{
  display:flex;
  gap:15px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:40px;
}

.subscribe input{
  width:350px;
  padding:18px 20px;
  border:none;
  border-radius:18px;
  background:rgba(255,255,255,0.08);
  color:#fff;
  outline:none;
}

.subscribe button{
  padding:18px 35px;
  border:none;
  border-radius:18px;
  background:linear-gradient(45deg,#00e1ff,#8a2be2);
  color:#fff;
  font-weight:bold;
  cursor:pointer;
  transition:0.4s;
}

.subscribe button:hover{
  transform:scale(1.05);
}

.contact{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:20px;
  margin-bottom:40px;
}

.contact div{
  background:rgba(255,255,255,0.08);
  padding:15px 25px;
  border-radius:18px;
}

.socials{
  display:flex;
  justify-content:center;
  gap:15px;
}

.socials span{
  width:55px;
  height:55px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex;
  justify-content:center;
  align-items:center;
  font-weight:bold;
  transition:0.4s;
  cursor:pointer;
}

.socials span:hover{
  background:linear-gradient(45deg,#00e1ff,#8a2be2);
  transform:scale(1.1);
}

@keyframes spin{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

@keyframes pulse{
  from{transform:scale(1);}
  to{transform:scale(1.2);}
}

@media(max-width:768px){
  h1{
    font-size:42px;
  }

  p{
    font-size:16px;
  }

  .card{
    padding:40px 20px;
  }
}
