/* ============================================
   ElectraCode — Theme Override
   Enforces the brand background on all pages.
   Loaded last to guarantee correct background.
   ============================================ */

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(63,169,245,.18),
            transparent 55%
        ),
        linear-gradient(
            135deg,
            #0A1E33 0%,
            #1A4C8B 55%,
            #3FA9F5 100%
        );

    color: white;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255,255,255,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.04) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}