Add comprehensive easter egg system with mobile optimization

Implement 6 interactive easter eggs:
- "He Comes" mode (type "he comes" or "zalgo")
- 404 Text Not Found (type "404")
- Matrix red/blue pill modes
- Developer credits (type "credits" or click title 10x)
- Witching Hour (3:33 AM automatic activation)
- Mobile shake detection with haptic feedback

Fix easter egg trigger logic to prevent normal generation override.
Add complete documentation of all easter eggs in README.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Ole-Morten Duesund 2025-08-18 20:49:44 +02:00
commit 41198a55ec
3 changed files with 335 additions and 3 deletions

View file

@ -461,6 +461,20 @@ footer p {
}
}
/* Shake animation for witching hour */
@keyframes subtle-shake {
0%,
100% {
transform: translateX(0);
}
25% {
transform: translateX(-1px);
}
75% {
transform: translateX(1px);
}
}
/* Print styles */
@media print {
body {