body {
  margin: 0;
  min-height: 100vh;
  background-image: url('14229113.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center; /* centra horizontalmente */
  align-items: center;     /* centra verticalmente */
  padding: 2rem;
}

.container {
  background-color: rgba(0,0,0,0.6); /* cuadro semi-transparente */
  padding: 2rem 3rem;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3); /* glow leve */
  max-width: 800px;
  width: 100%;
  text-align: center;
}

/* Fuente Sixtyfour con glow */
.sixtyfour {
  font-family: 'Sixtyfour', sans-serif;
  font-variation-settings: 'BLED' 0, 'SCAN' 0;
  color: white;
  text-shadow: 0 0 10px white ;
}

/* Listas de favoritos */
.favorites-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem auto;
  text-align: left;
  display: inline-block;
}

.favorites-list li {
  margin: 0.3rem 0;
}

.glow-line {
  border: 0;
  height: 2px;
  background: white;
  box-shadow: 0 0 10px white;
  margin: 2rem 0;
}
.favorites-list li:hover {
  color: #ff0; /* amarillo neón */
  text-shadow: 0 0 10px #ff0, 0 0 20px #ff0;
  cursor: pointer;
}
.sixtyfour-link {
  font-family: 'Sixtyfour', sans-serif; /* 🔹 fuerza la fuente */
  color: white; /* Texto blanco */
  text-decoration: none; /* Quita subrayado */
  text-shadow: 0 0 10px white; /* Glow */
  transition: 0.3s;
}

.sixtyfour-link:hover {
  font-family: 'Sixtyfour', sans-serif; /* 🔹 fuerza la fuente */
  color: #ff0; /* amarillo neón al pasar el mouse */
  text-shadow: 0 0 10px #ff0, 0 0 20px #ff0, 0 0 30px #ff0;
}
.companion-cube {
  width: 150px;
  margin: 1rem auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 20px #ff69b4, 0 0 40px #ff69b4;
  transition: transform 0.3s, box-shadow 0.3s ;
}

.companion-cube:hover {
  transform: scale(1.1) ;
  box-shadow: 0 0 30px #ff69b4, 0 0 60px #ff69b4 ;
  cursor: pointer ;
}




