* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0b0c10;
  color: #fff;
  overflow: hidden;
}

/* Card */
.card {
  background: rgba(20,20,20,0.9);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 20px #00ffea, 0 0 40px #00ffea33;
  animation: floatUp 2s ease, floating 6s ease-in-out infinite;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floating {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Logo */
.logo img {
  max-width: 120px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid #00ffea;
}

/* Heading with Neon */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #00ffea;
  text-shadow:
    0 0 5px #00ffea,
    0 0 10px #00ffea,
    0 0 20px #00ffea,
    0 0 40px #00ffea;
}

/* Description */
.description {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 35px;
  color: #ccc;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.time-box {
  background: rgba(0,255,234,0.1);
  border-radius: 15px;
  padding: 15px 20px;
  min-width: 70px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #00ffea44;
}

.time-box:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #00ffea, 0 0 25px #00ffea88;
}

.time-box span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ffea;
}

.label {
  font-size: 0.8rem;
  font-weight: 300;
  margin-top: 5px;
  color: #ccc;
}

/* Footer */
.footer {
  margin-top: 25px;
  font-size: 0.85rem;
  opacity: 0.8;
}
