:root {
  /* --- COLOR ACTUALIZADO --- */
  --peya-color: #F5014F;
  --peya-color-darker: #c4003e;
  /* Un tono más oscuro para el gradiente */
  --glow-color: rgba(245, 1, 79, 0.6);
  /* RGBA del nuevo color */

  --background-dark: #0D0D0D;
  --text-light: #F0F0F0;
  --card-background: rgba(20, 20, 25, 0.6);
  --border-color: rgba(255, 255, 255, 0.1);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background-dark);
  color: var(--text-light);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

/* --- FONDO AURORA ANIMADO (Sin cambios) --- */
body::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  filter: blur(150px);
  background: linear-gradient(135deg, var(--peya-color), #ff8c00, #4a00e0);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.2;
  animation: moveAurora 20s infinite alternate ease-in-out;
}

@keyframes moveAurora {
  from {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.2);
  }

  to {
    transform: translate(-45%, -55%) rotate(360deg) scale(1.5);
  }
}

/* --- FIN FONDO --- */

.container {
  position: relative;
  z-index: 1;
  max-width: 550px;
  width: 100%;
  padding: 50px;
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Para Safari */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

h1 {
  font-size: 2.5em;
  color: var(--text-light);
  margin: 0 0 30px 0;
  font-weight: 700;
}

h1 span {
  color: var(--peya-color);
  text-shadow: 0 0 15px var(--glow-color);
}

.action-button {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.2em;
  font-weight: 700;
  color: white;
  background: linear-gradient(90deg, var(--peya-color-darker), var(--peya-color));
  background-size: 200% 100%;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(245, 1, 79, 0.4);
  /* Sombra con el nuevo color */
}

.action-button:hover {
  background-position: right center;
  /* Cambia la dirección del gradiente */
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(245, 1, 79, 0.6);
  /* Sombra con el nuevo color */
}

@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }

  .action-button {
    font-size: 1em;
  }

  .container {
    padding: 30px;
  }
}