/* Ambient neon arcade background — fixed pseudo-layer (does not blur page content) */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

html {
    background-color: #0b0f19;
}

body {
    position: relative;
    background: transparent;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background:
        linear-gradient(
            to bottom,
            rgba(10, 12, 16, 0.75) 0%,
            rgba(10, 12, 16, 0.85) 100%
        ),
        url('/images/bg-neon.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(25px);
    transform: scale(1.05);
    pointer-events: none;
}
