// Animated starfield + planets background const StarsBg = () => (
); // Confetti burst const Confetti = ({ active }) => { if (!active) return null; const colors = ['#ff3d8a', '#00e5ff', '#ffd60a', '#7cff5e', '#a06cff', '#ff5e62']; const pieces = Array.from({ length: 60 }, (_, i) => { const left = Math.random() * 100; const dur = 1.2 + Math.random() * 1.6; const delay = Math.random() * 0.4; const color = colors[i % colors.length]; const size = 6 + Math.random() * 10; return ( ); }); return