diff --git a/src/components/donate/GithubSponsorButton.tsx b/src/components/donate/GithubSponsorButton.tsx
index dbfedc60..68315b64 100644
--- a/src/components/donate/GithubSponsorButton.tsx
+++ b/src/components/donate/GithubSponsorButton.tsx
@@ -7,12 +7,12 @@ export function GithubSponsorButton() {
href="https://github.com/sponsors/eshanized"
target="_blank"
rel="noopener noreferrer"
- whileHover={{ scale: 1.05 }}
+ whileHover={{ scale: 1.05, boxShadow: '0 4px 12px rgba(0, 0, 0, 0.1)' }}
whileTap={{ scale: 0.95 }}
- className="inline-flex items-center gap-2 px-6 py-3 bg-[#2ea44f] text-white rounded-lg hover:bg-[#2c974b] transition-colors"
+ className="inline-flex items-center gap-3 px-6 py-3 bg-[#2ea44f] text-white rounded-lg shadow-md hover:bg-[#2c974b] transition-all duration-300 ease-out"
>
- Sponsor on GitHub
+ Sponsor on GitHub
);
-}
\ No newline at end of file
+}