* { margin:0; padding:0; box-sizing:border-box; }

body {
  min-height:100vh;
  font-family:'Poppins',sans-serif;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#111;
  overflow:hidden;
  color:#fff;
  position:relative;
}

/* floating blobs */
.blobs .blob {
  position:absolute;
  width:150px; height:150px;
  background: radial-gradient(circle, rgba(255,0,150,0.6), rgba(0,204,255,0.6));
  border-radius:50%;
  animation: float 15s infinite ease-in-out;
}

.blob:nth-child(1){ top:10%; left:15%; animation-delay:0s;}
.blob:nth-child(2){ top:50%; left:70%; animation-delay:2s;}
.blob:nth-child(3){ top:70%; left:25%; animation-delay:4s;}
.blob:nth-child(4){ top:20%; left:80%; animation-delay:6s;}

@keyframes float {
  0%,100%{ transform: translateY(0) rotate(0deg);}
  25%{ transform: translateY(-40px) rotate(10deg);}
  50%{ transform: translateY(20px) rotate(20deg);}
  75%{ transform: translateY(-20px) rotate(30deg);}
}

/* redirect box */
.redirect-box {
  position:relative;
  z-index:2;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius:20px;
  padding:40px 30px;
  text-align:center;
  max-width:450px;
  width:100%;
  box-shadow:0 8px 25px rgba(0,0,0,0.3);
}

.logo {
  font-size:3rem;
  color:#ff77ff;
  margin-bottom:15px;
  text-shadow:0 0 20px #ff77ff;
}

h1 {
  font-size:1.8rem;
  margin-bottom:12px;
  font-weight:700;
}

.highlight {
  color:#00ffe0;
  text-shadow:0 0 10px #00ffe0;
}

p {
  margin-bottom:15px;
  font-size:1.1rem;
  opacity:0.9;
}

/* countdown */
.countdown {
  font-size:3rem;
  font-weight:bold;
  background: rgba(255,255,255,0.15);
  border-radius:50%;
  width:100px;
  height:100px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:20px auto;
  box-shadow: inset 0 0 15px rgba(255,255,255,0.2),
              0 0 15px rgba(0,0,0,0.3);
}

/* button */
button {
  padding:14px 30px;
  background: linear-gradient(45deg, #ff77ff, #00ffe0);
  border:none;
  border-radius:50px;
  font-size:1.1rem;
  color:white;
  cursor:pointer;
  font-weight:600;
  transition: all 0.3s ease;
}

button:hover {
  transform: scale(1.05);
  box-shadow:0 0 20px #ff77ff, 0 0 25px #00ffe0;
}

.footer {
  margin-top:20px;
  font-size:0.9rem;
  opacity:0.7;
}

/* responsive */
@media(max-width:600px){
  h1{ font-size:1.5rem;}
  p{ font-size:1rem;}
  .countdown{ width:80px; height:80px; font-size:2.2rem;}
  button{ padding:12px 25px; font-size:1rem;}
}
