/* Reset y tipografía */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Fondo y alineación */
body {
  height: 100vh;
  background: linear-gradient(135deg, #0048ff, #00c6ff);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

/* Contenedor principal */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 600px;
}

/* Tarjeta central */
.content {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Ícono principal */
.icon {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Texto */
h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Loader animado */
.loader {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255,255,255,0.3);
  border-top: 5px solid #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Footer */
.footer {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 10px;
}