/* ============================================================
//  (Frontend)       Common/CSS/reset.css
// ============================================================

/* ========== Common/CSS/reset.css ========== */

* { margin: 0; padding: 0; box-sizing: border-box; }

html { overflow-x: hidden; scrollbar-gutter: stable; }

body {
    font-family: 'Arial Black', Arial, sans-serif;
    background: #080b13;
    color: #fff;
    overflow-x: hidden;
}

/* Grille fixe derrière tout */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: -2;
}

button { cursor: pointer; }