diff --git a/src/components/Background.tsx b/src/components/Background.tsx index a302840..9e86ae0 100644 --- a/src/components/Background.tsx +++ b/src/components/Background.tsx @@ -45,6 +45,13 @@ export function Background({ background }: BackgroundProps) { backgroundSize: '400% 400%', animation: 'ultimate 5s linear infinite' }; + case 'god-tier': + return { + background: 'url(/src/special/bathtub.gif) no-repeat center center fixed', + backgroundSize: 'contain', + animation: 'god-tier 10s ease infinite' + }; + default: return { background: 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)' diff --git a/src/special/bathtub.png b/src/special/bathtub.png new file mode 100644 index 0000000..f55f445 Binary files /dev/null and b/src/special/bathtub.png differ