extremely claude-assisted go game based on atproto! working on cleaning up and giving a more unique design, still has a bit of a slop vibe to it.

Fix z-index layering issues

- Move z-index from .header to .header-wrapper to avoid creating
stacking context that traps ProfileDropdown
- Add z-index: 50 to ProverbBanner to ensure it stays below header
- Header wrapper now at z-index: 100, higher than page content

This fixes:
- ProfileDropdown now renders above ProverbBanner
- ProfileDropdown renders above login form separator line

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>

+4 -1
+2 -1
src/lib/components/Header.svelte
··· 92 92 max-width: 1200px; 93 93 margin: clamp(1rem, 3vw, 2rem) auto clamp(1.5rem, 4vw, 3rem); 94 94 padding: 0 clamp(1rem, 3vw, 2rem); 95 + position: relative; 96 + z-index: 100; 95 97 } 96 98 97 99 .header { 98 100 position: relative; 99 - z-index: 100; 100 101 } 101 102 102 103 .header-content {
+2
src/lib/components/ProverbBanner.svelte
··· 75 75 justify-content: center; 76 76 margin-bottom: 1.5rem; 77 77 animation: unfurl 0.8s ease-out; 78 + position: relative; 79 + z-index: 50; 78 80 } 79 81 80 82 @keyframes unfurl {