
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: radial-gradient(circle at center, #0a0f1e 0%, #04070d 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  background-color: #111;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px #00f0ff;
  text-align: center;
  width: 90%;
  max-width: 400px;
}

h1 {
  font-size: 2rem;
  color: #00f0ff;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.3rem;
  color: #f9c410;
  margin-bottom: 20px;
}

.bonus {
  font-size: 1rem;
  margin: 10px 0;
}

.highlight {
  color: #00f0ff;
}

#countdown {
  font-size: 1.5rem;
  color: #00f0ff;
  margin: 10px 0;
}

.scarcity {
  font-size: 0.9rem;
  margin: 15px 0;
  color: #ccc;
}

.cta-button {
  display: inline-block;
  padding: 15px 25px;
  background-color: #00f0ff;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 10px #00f0ff;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #00d9e6;
}
