/* 🎨 Color Variables */
:root {
  --pink: #ff4fa3;
  --lavender: #b388ff;
  --peach: #ffb26b;
  --sky: #5dd8ff;
  --cream: #fff9f2;
  --bg: #111111;
}

/* 🌑 Page background */
body {
  background: var(--bg);
  margin: 0;
  font-family: Arial, sans-serif;
  cursor: url('heart-cursor.png'), auto;
}

/* 💖 Marquee container */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: var(--pink);
  padding: 12px 0;
}

/* 💖 Moving text track */
.marquee-track {
  display: inline-block;
  animation: scroll 12s linear infinite;
}

/* 💌 Text style */
.marquee-track span {
  margin-right: 50px;
  font-size: 24px;
  font-weight: bold;
  color: white;
}

/* ✨ Scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* 🖼️ Image hover effect */
img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* 💗 Floating hearts */
.heart {
  position: fixed;
  animation: float 8s linear infinite;
}

/* 💗 Heart floating animation (you were missing this) */
@keyframes float {
  0% {
    transform: translateY(100vh);
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh);
    opacity: 0;
  }
}