body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: #0b0b0b;
  color: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

h1 {
  color: #00ffcc;
  font-size: 3em;
  margin-bottom: 20px;
}

p {
  color: #ccc;
  font-size: 1.2em;
  line-height: 1.6;
}

input[type="email"] {
  padding: 15px;
  width: 65%;
  max-width: 400px;
  border: none;
  border-radius: 5px;
  margin: 10px 0;
}

button {
  padding: 15px 35px;
  border: none;
  border-radius: 5px;
  background: #00ffcc;
  color: #000;
  font-size: 1.2em;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #00d1a6;
}

.features {
  text-align: left;
  margin: 30px auto;
  max-width: 700px;
}

.features li {
  margin: 12px 0;
  font-size: 1.1em;
}

.testimonial {
  background: #111;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  font-style: italic;
}

.countdown {
  font-size: 1.5em;
  color: #ff6600;
  margin: 20px 0;
}

.disclaimer {
  font-size: 0.8em;
  color: #777;
  margin-top: 20px;
}

#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.coin {
  position: absolute;
  width: 40px;
  height: 40px;
  background: url('https://i.ibb.co/fM7gB0h/coin.png') no-repeat center/contain;
  opacity: 0.8;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: #111;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
}

.close-btn {
  background: #ff6600;
  color: #fff;
  padding: 10px 20px;
  border: none;
  margin-top: 15px;
  cursor: pointer;
  border-radius: 5px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2em;
  }

  input[type="email"] {
    width: 90%;
  }

  button {
    width: 90%;
  }
}
