 @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Pacifico&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Pacifico', cursive;
  background: #121212;
  color: #FFD700;
  overflow-x: hidden;
}

header {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(180deg, #A8E600, #FFD700);
  color: #1c1c1c;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.icono-central img {
  width: 100px;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px #1c1c1c);
  margin-bottom: 10px;
}

.personajes {
  padding: 2rem 1rem;
  text-align: center;
}

.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.galeria img {
  width: 150px;
  border-radius: 15px;
  border: 2px solid #FFD700;
  transition: 0.3s;
}

.ritual {
  padding: 3rem 1rem;
  text-align: center;
  background: #1a1a1a;
}

.tarjeta-contacto {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  border: 1px dashed #FFD700;
  border-radius: 20px;
}

.btn-whatsapp {
  display: inline-block;
  background-color: #25D366; /* Verde WA */
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  transition: 0.3s;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
  background-color: #128C7E;
}

.footer-ritual {
  padding: 2rem;
  background: #000;
  color: #A8E600;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  border-top: 1px solid #333;
}

.redes-sociales a {
  color: #FFD700;
  text-decoration: none;
  margin: 0 10px;
}

#estrellas {
  position: fixed;
  top: 0; left: 0;
  z-index: -1;
  width: 100%; height: 100%;
}