/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: url('-3.jpg')purple;
  background-size: cover; 
  background-repeat: no-repeat;
  font-family: 'Great Vibes', cursive;
  color: #fbd6ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Glowing title */
h1 {
  font-size: 4em;
  color: #ffe3ff;
  text-shadow:
    0 0 5px #ffb3ff,
    0 0 15px #d580ff,
    0 0 25px #b44dff,
    0 0 35px #ff66cc;
  animation: pulseGlow 4s ease-in-out infinite;
  margin: 0;
  z-index: 2;
}

/* Glow animation */
@keyframes pulseGlow {
  0%, 100% {
    text-shadow:
      0 0 5px #ffb3ff,
      0 0 15px #d580ff,
      0 0 25px #b44dff,
      0 0 35px #ff66cc;
  }
  50% {
    text-shadow:
      0 0 10px #ff99ff,
      0 0 20px #ff66cc,
      0 0 40px #e040ff,
      0 0 60px #cc00ff;
  }
}

/* Glowing button */
.glow-button {
  text-decoration: none;
  color: #ffe3ff;
  font-size: 1.5em;
  padding: 10px 20px;
  border: 2px solid #ff99ff;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: 0 0 5px #ff99ff, 0 0 10px #cc66ff;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
  margin-top: 30px;
  display: inline-block;
}

.glow-button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #ff66cc;
  text-shadow: 0 0 10px #ff66cc, 0 0 20px #cc00ff;
}

/* Fairy cursor */
#fairy-cursor {
  position: absolute;
  width: 32px;
  height: 32px;
  pointer-events: none;
  background: url('pink-fairy.png') center center / contain no-repeat;
  z-index: 999;
}

/* Glitter trail */
.cursor-sparkle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 6px #ff99ff, 0 0 12px #ff66cc;
  animation: sparkle-fade 0.9s ease-out forwards;
}

@keyframes sparkle-fade {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

