@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:wght@400;600&display=swap');

body {
  background: url('giphyyy.gif') center/cover no-repeat fixed;
  font-family: 'Playfair Display', serif;
  color: black;
  text-shadow: 0 0 8px #ffb7ff, 0 0 16px #ffcfff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  cursor: url('https://cur.cursors-4u.net/cursors/cur-11/cur1071.ani'), auto;
}

.fairy-banner {
  background: transparent(90deg, #ffb7ff, #d68cff, #ffb7ff);
  text-align: center;
  font-family: 'Great Vibes', cursive;
  font-size: 30px;
  color: #fff;
  text-shadow: 0 0 10px #ff80ff;
  padding: 10px;
  animation: shimmer 10s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.container {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.generator, .quiz-box, .gallery {
  background: rgba(255, 105, 180, 0.4);
  border: 2px solid rgba(255, 200, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 100, 200, 0.6);
  margin: 30px 0;
  padding: 20px;
  color: black;
  font-size: 18px;
  backdrop-filter: blur(10px);
}

button {
  background: linear-gradient(90deg, #ffb6ff, #e085ff);
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 0 15px #ffb6ff;
  transition: transform 0.2s;
}

button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px #ff99ff;
}

input {
  margin: 5px;
  border-radius: 8px;
  padding: 5px;
  border: 1px solid #ffb6ff;
}

#galleryDisplay img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin: 5px;
  box-shadow: 0 0 10px #ff99ff;
}

/* Sparkle trail */
.sparkle {
  position: fixed;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #ffccff 0%, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
  animation: fade 1s forwards;
}

@keyframes fade {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(2); }
}

/* Floating hearts and bubbles */
@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0.5); opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.heart, .bubble {
  position: fixed;
  bottom: -50px;
  animation: floatUp 10s infinite ease-in;
  z-index: 0;
}

.heart {
  color: pink;
  font-size: 24px;
}

.bubble {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}


