feat: DAN MODE ACTIVATED banner (blinking), cycle order light→dark→dan

This commit is contained in:
Falkan
2026-03-17 11:35:49 -04:00
parent 7cc893d48f
commit 04a6d00549
2 changed files with 22 additions and 0 deletions

View File

@@ -219,6 +219,24 @@
color: #ff0000;
}
/* ── Dan Mode banner ───────────────────────────────────────────────────────── */
.dan-banner {
background-color: #ff0000;
color: #ffff00;
text-align: center;
font-weight: 900;
font-size: 1.2rem;
letter-spacing: 0.2em;
padding: 0.5rem 1rem;
border-bottom: 3px solid #ffff00;
animation: dan-blink 0.6s step-start infinite;
}
@keyframes dan-blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
/* ── Results grid ──────────────────────────────────────────────────────────── */
.results-grid {
display: grid;

View File

@@ -48,6 +48,10 @@
</nav>
</header>
{#if theme === 'dan'}
<div class="dan-banner" aria-live="assertive">⚠ DAN MODE ACTIVATED ⚠</div>
{/if}
<main class="container">
{@render children()}
</main>