/* Fondo */
body {
  margin: 0;
  padding: 0;
  background: #0d0d0d; /* negro suave */
  color: #fff;
  font-family: 'Anisette', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

/* Contenedor */
.error-container {
  animation: fadeIn 1s ease-in-out;
}

/* Texto 404 (como knockout) */
.error-code {
  font-size: 8rem;
  font-weight: bold;
  color: #ff4fcf; /* rosa */
  animation: knockout 1.5s ease-in-out infinite alternate;
}

/* Subtítulo */
.error-title {
  font-size: 2rem;
  margin: 10px 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Mensaje */
.error-message {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

/* Botón personalizado */
.btn-entradas {
  display: inline-block;
  padding: 12px 30px;
  background: #ff4fcf;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(255, 79, 207, 0.7);
  transition: 0.3s ease;
}

.btn-entradas:hover {
  background: #fff;
  color: #ff4fcf;
  box-shadow: 0 0 25px rgba(255, 79, 207, 1);
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes knockout {
  0% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(10deg) translateY(10px); }
  100% { transform: rotate(-10deg) translateY(15px); }
}