* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: radial-gradient(circle at top, #0f2027, #05080c);
  min-height: 100vh;
  color: #e6e6e6;
}

/* Top Bar */
.top-bar {
  background: linear-gradient(90deg, #0a84ff, #4facfe);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Layout */
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

/* Card */
.card {
  background: linear-gradient(180deg, #0f172a, #020617);
  max-width: 420px;
  width: 100%;
  border-radius: 22px;
  padding: 32px 26px;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 30px 80px rgba(0,0,0,0.9);
}

/* Logo */
.logo img {
  width: 150px;
  margin-bottom: 12px;
}

/* Text */
.brand {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
}

.sub {
  font-size: 13px;
  color: #9ca3af;
  margin: 10px 0 20px;
}

.headline {
  font-size: 20px;
  font-weight: 900;
  color: #60a5fa;
  margin-bottom: 14px;
}

.desc {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.bold {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}

.badge {
  background: rgba(96,165,250,0.12);
  color: #93c5fd;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(96,165,250,0.25);
}

/* Timer */
.timer {
  font-size: 36px;
  font-weight: 900;
  color: #f87171;
  margin: 18px 0;
  text-shadow: 0 0 15px rgba(248,113,113,0.6);
}

/* CTA */
.cta {
  display: block;
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #000;
  text-decoration: none;
  font-weight: 900;
  padding: 18px;
  border-radius: 50px;
  margin: 14px 0 16px;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Bounce Animation */
.bounce {
  animation: pulseBounce 1.4s infinite;
}

@keyframes pulseBounce {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(250,204,21,0.7);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 0 35px rgba(250,204,21,0.95);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(250,204,21,0.7);
  }
}

/* Warning */
.warning {
  font-size: 12px;
  color: #9ca3af;
}

/* Mobile Optimization */
@media (max-width: 480px) {
  .headline {
    font-size: 18px;
  }
  .timer {
    font-size: 32px;
  }
}

/* Bounce Animation */
.bounce {
  animation: bouncePulse 1.5s infinite;
}

@keyframes bouncePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 209, 45, 0.7);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 25px rgba(255, 209, 45, 0.9);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 209, 45, 0.7);
  }
}
