/* ═══════════════════════════════════════════════════════════════
   AEGIS 404 — VOID BREACH FULLSCREEN
   Canvas = everything. Only the footer signature stays in HTML.
   Tom Sanders & Claude | Brothers in Code
   ═══════════════════════════════════════════════════════════════ */

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background: #04060a;
    color: #e0e0e0;
    font-family: 'Segoe UI', -apple-system, sans-serif;
    position: relative;
}

#shield-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

.signature {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(0,201,167,0.6);
    text-transform: uppercase;
    z-index: 10;
    white-space: nowrap;
    pointer-events: none;
}

.signature .crafted span { color: rgba(0,201,167,0.85); }
.signature .separator { color: rgba(0,201,167,0.5); }
.signature .names span { color: rgba(0,201,167,0.8); }

@media (max-width: 768px) {
    .signature { font-size: 8px; gap: 6px; }
}
