* { 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: #000010;
  overflow: hidden;
  color: #fff;
  position: relative;
}

#starfield {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  z-index:1;
}

/* redirect box */
.redirect-box {
  position: relative;
  z-index:2;
  background: rgba(0,0,0,0.6);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 0 30px rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

.logo {
  font-size: 3rem;
  color: #ffdd00;
  margin-bottom: 15px;
  text-shadow: 0 0 20px #ffdd00, 0 0 35px #ff00ff;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.highlight {
  color: #00f5ff;
  text-shadow: 0 0 10px #00f5ff;
}

p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  opacity:0.9;
}

/* countdown digital LED */
.countdown {
  font-family: 'Digital-7', monospace;
  font-size: 3rem;
  color: #00ffcc;
  background: rgba(0,0,0,0.4);
  border-radius: 12px;
  width: 100px;
  height: 100px;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc;
}

/* button */
button {
  padding: 14px 30px;
  background: linear-gradient(45deg, #00ffcc, #ff00ff);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffcc, 0 0 35px #ff00ff;
}

.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;}
}
