/* RESET */
body {
  margin: 0;
  background: radial-gradient(circle at top, #071022, #020814);
  font-family: Arial, sans-serif;
  color: #ffffff;
}

/* ANIMACIONES */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseBono {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 rgba(0,255,157,0.4);
  }
  50% {
    box-shadow: 0 0 22px rgba(0,255,157,0.9);
  }
  100% {
    box-shadow: 0 0 0 rgba(0,255,157,0.4);
  }
}

/* CONTENEDOR */
.container {
  max-width: 420px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
  animation: fadeUp 0.9s ease-out;
}

/* LOGO */
.logo {
  max-width: 180px;
  margin-bottom: 25px;
}

/* TITULOS */
h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 15px;
  line-height: 1.4;
  opacity: 0.9;
}

/* BONO */
.bono {
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 30px auto;
  display: block;
  animation: pulseBono 2.6s ease-in-out infinite;
}

/* BOTON */
.cta {
  display: block;
  margin-top: 30px;
  padding: 16px;
  background: linear-gradient(135deg, #00ff9d, #00e08a);
  color: #002b1a;
  font-weight: bold;
  text-decoration: none;
  border-radius: 14px;
  animation: glow 2s infinite;
}

/* LEGAL */
.legal {
  font-size: 11px;
  opacity: 0.6;
  margin-top: 22px;
}
