.fairy-curtain {
  position: fixed;
  top: 0;
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
  z-index: 10;
}

.fairy-curtain span {
  width: 8px;
  height: 8px;
  background: #fff5f8;
  border-radius: 50%;
  box-shadow: 0 0 10px #ffd6e8, 0 0 20px #ffd6e8, 0 0 30px #ffc0cb;
  animation: flicker 2s infinite ease-in-out alternate;
}

@keyframes flicker {
  0% {
    opacity: 0.4;
    transform: translateY(0px) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(5px) scale(1.2);
  }
  100% {
    opacity: 0.6;
    transform: translateY(0px) scale(0.9);
  }
}

.angelic-text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Great Vibes', cursive;

  font-size: 3em;
  color: #fff8f0;
  text-shadow: 
    0 0 5px #ffffff,
    0 0 10px #ffe8fa,
    0 0 20px #ffd6fa,
    0 0 30px #ffc7ff;
  animation: glowAngel 4s ease-in-out infinite alternate;
  z-index: 100;
  text-align: center;
}

@keyframes glowAngel {
  0% {
    text-shadow: 
      0 0 5px #ffffff,
      0 0 10px #ffe8fa,
      0 0 20px #ffd6fa,
      0 0 30px #ffc7ff;
  }
  100% {
    text-shadow: 
      0 0 10px #ffffff,
      0 0 20px #ffecff,
      0 0 30px #ffc2ff,
      0 0 40px #ffb3f0;
  }
}

.heaven-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255, 200, 250, 0.15) 0%, rgba(255, 200, 250, 0.05) 50%, transparent 100%);
  box-shadow:
    inset 0 0 80px 20px rgba(255, 250, 200, 0.2),
    0 0 60px 30px rgba(255, 245, 180, 0.15);
  z-index: 999;
  animation: angelPulse 4s ease-in-out infinite alternate;
}

@keyframes angelPulse {
  0% {
    opacity: 0.6;
    box-shadow:
      inset 0 0 60px 10px rgba(255, 250, 200, 0.2),
      0 0 40px 20px rgba(255, 245, 180, 0.1);
  }
  100% {
    opacity: 0.9;
    box-shadow:
      inset 0 0 100px 30px rgba(255, 250, 200, 0.3),
      0 0 80px 40px rgba(255, 245, 180, 0.2);
  }
}

/* Start https://www.cursors-4u.com */ * {cursor: url(https://cur.cursors-4u.net/nature/nat-11/nat1002.cur), auto !important;} /* End https://www.cursors-4u.com */