/* ═══════════════════════════════════════════════
   BELLUCCI | BASE — Reset & Global
   DA: monochrome, bellucci-enhanced site style
   ═══════════════════════════════════════════════ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    user-select: none;
}

html,
body {
    width: 100%;
    height: 100%;
    background: var(--bg);
    color: #fff;
    font-family: var(--font-tech);
    overflow: hidden;
}

/* ── WebGL canvas ── */
#webgl {
    position: fixed;
    inset: 0;
    z-index: 1;
    opacity: 0.35;
    /* darker — monochrome shader stays subtle */
    pointer-events: none;
}

/* ── Film grain (very subtle) ── */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}