diff --git a/layouts/404.html b/layouts/404.html index 699e454..e3b04db 100644 --- a/layouts/404.html +++ b/layouts/404.html @@ -55,46 +55,8 @@ 60% { transform: skew(-0.5deg); } } - /* Scanline overlay */ - .scanlines { - position: fixed; - inset: 0; - pointer-events: none; - z-index: 10; - background: repeating-linear-gradient( - 0deg, - rgba(0, 0, 0, 0.1) 0px, - rgba(0, 0, 0, 0.1) 1px, - transparent 1px, - transparent 2px - ); - animation: scanline-flicker 0.1s infinite; - } - - @keyframes scanline-flicker { - 0%, 100% { opacity: 0.8; } - 50% { opacity: 0.85; } - } - - /* CRT vignette effect */ - .vignette { - position: fixed; - inset: 0; - pointer-events: none; - z-index: 9; - background: radial-gradient( - ellipse at center, - transparent 0%, - transparent 60%, - rgba(0, 0, 0, 0.4) 100% - ); - } - -
- -