body {
  margin: 0;
  font-family: sans-serif;
  color: #fff;
  text-align: center;

  background: radial-gradient(circle at center, #1a001a, #000000 70%);
  overflow-x: hidden;
  overflow-y: auto;
}

/* ✨ AURA SANADORA */
body::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background: radial-gradient(circle, rgba(255,200,255,0.2), transparent 70%);
  filter: blur(60px);

  animation: flotar 5s infinite ease-in-out;
}

@keyframes flotar {
  0% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-15px); }
  100% { transform: translate(-50%, -50%) translateY(0); }
}

.contenido {
  position: relative;
  z-index: 2;

  max-width: 800px;
  margin: auto;
  padding: 100px 20px;
}

/* SIMBOLO */
.simbolo {
  font-size: 120px;
  color: #ffccff;

  animation: brillo 3s infinite;

  text-shadow:
    0 0 10px #ffccff,
    0 0 30px #ff99ff,
    0 0 60px #cc66cc;
}

@keyframes brillo {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

/* TEXTO */
h1 {
  font-size: 42px;
}

p {
  font-size: 18px;
  line-height: 1.8;
}

/* BOTON */
.volver {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 25px;

  border: 1px solid #ffccff;
  color: #ffccff;
  text-decoration: none;

  transition: 0.3s;
}

.volver:hover {
  background: #ffccff;
  color: black;
  box-shadow: 0 0 25px #ffccff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .simbolo { font-size: 80px; }
  h1 { font-size: 28px; }
  p { font-size: 16px; }
}