* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

span{
    color: #6366f1;
}

/* Glow */
body::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.4), transparent);
  top: -100px;
  left: -100px;
  filter: blur(100px);
}

/* Container */
.container {
  text-align: center;
  max-width: 600px;
  padding: 20px;
  z-index: 2;
}

/* Logo */
.logo img {
  width: 180px;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* Title */
h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

/* Subtitle */
p {
  color: #cbd5f5;
  margin-bottom: 30px;
}

/* Loader */
.loader {
  border: 4px solid rgba(255,255,255,0.1);
  border-top: 4px solid #6366f1;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0 auto 30px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.time-box {
  background: rgba(255,255,255,0.05);
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 70px;
}

.time-box h2 {
  font-size: 22px;
}

.time-box span {
  font-size: 12px;
  color: #94a3b8;
}

/* Footer */
.footer {
  margin-top: 40px;
  font-size: 14px;
  color: #64748b;
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 30px;
  }
  .countdown {
    flex-wrap: wrap;
  }
}