window.__STYLEGALLERY_ASSETS__={}; gsap.set(".flair", { x: innerWidth / 2, y: innerHeight / 2 }); gsap.set(".flair", { xPercent: -50, yPercent: -50 }); let xTo = gsap.quickTo(".flair", "x", { duration: 0.6, ease: "power3" }), yTo = gsap.quickTo(".flair", "y", { duration: 0.6, ease: "power3" }); window.addEventListener("mousemove", (e) => { xTo(e.clientX); yTo(e.clientY); });