Changed modal display from static 'hidden' class to conditional binding that
only applies 'hidden' when showEasterEgg is false. This prevents Tailwind's
display: none !important from overriding the flex layout binding.
Co-Authored-By: Claude Haiku 4.5 <redacted>
<!-- Easter Egg Modal (Hidden by default) -->
<div
- class="fixed inset-0 z-50 hidden"
- :class="{ 'flex items-center justify-center': showEasterEgg }"
+ class="fixed inset-0 z-50"
+ :class="{ 'flex items-center justify-center': showEasterEgg, 'hidden': !showEasterEgg }"
x-show="showEasterEgg"
x-cloak
>