From e896719d0bb283493c97d706aac9ecb4dfc5ccc3 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Mon, 16 Feb 2026 19:58:42 +0000 Subject: [PATCH] Auto commit: 2026-02-16T19:58:42.796Z --- index.php | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/index.php b/index.php index 46ec9b9..fee9b5c 100644 --- a/index.php +++ b/index.php @@ -588,8 +588,9 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489"; align-items: center; justify-content: center; text-decoration: none; - transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); + transition: all 0.05s ease-out; /* Super fast for vibration */ position: relative; + will-change: transform, background-color, box-shadow; } .social-float::before { @@ -951,6 +952,13 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489"; trackTitle.style.textShadow = '0 0 20px #ff0000, 0 0 40px #ff0000'; trackTitle.style.transform = `scale(${1 + (average / 255) * 0.12})`; } + + // Social Icons aggression + document.querySelectorAll('.social-float').forEach(icon => { + icon.style.backgroundColor = '#ff0000'; + icon.style.boxShadow = '0 0 30px #ff0000, 0 0 60px rgba(255, 0, 0, 0.6)'; + icon.style.transform = `translate(${(Math.random() - 0.5) * shakeIntensity * 2}px, ${(Math.random() - 0.5) * shakeIntensity * 2}px) scale(1.15)`; + }); } else { const dominantHue = (average * 2 + colorOffset) % 360; document.documentElement.style.setProperty('--dynamic-glow', `hsla(${dominantHue}, 100%, 60%, 0.8)`); @@ -964,6 +972,13 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489"; trackTitle.style.textShadow = ''; trackTitle.style.transform = ''; } + + // Reset Social Icons + document.querySelectorAll('.social-float').forEach(icon => { + icon.style.backgroundColor = ''; + icon.style.boxShadow = ''; + icon.style.transform = ''; + }); } }