@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@300;500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a, #333);
  font-family: 'Roboto', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px; /* Espacio en móviles */
  color: white;
}

.contenedor {
  width: 100%;
  max-width: 600px;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1.5s ease-in-out;
}

.logo {
  width: 120px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

h1 {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #fcd34d;
}

.mensaje {
  font-size: 1.1rem;
  font-weight: 300;
  color: #d1d5db;
}

/* Animación */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MEDIA QUERY para móviles */
@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }

  .mensaje {
    font-size: 1rem;
  }

  .logo {
    width: 100px;
  }

  .contenedor {
    padding: 30px 16px;
  }
}
