/* Blokowanie selekcji i drag */
* {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

body { 
    margin: 0; 
    background: #000; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100vh;
    overflow: hidden;
	
	/* 1) Ogólna podpowiedź dla silnika tekstu */
	text-rendering: geometricPrecision; /* lub optimizeLegibility / optimizeSpeed */

	/* 2) WebKit / Blink (Chrome, Edge, Opera, Safari – głównie macOS) */
	-webkit-font-smoothing: none;           /* próba wyłączenia AA */
	/* alternatywnie popularne: */
	/* -webkit-font-smoothing: antialiased; */

	/* 3) Firefox na macOS */
	-moz-osx-font-smoothing: grayscale;

	/* 4) Niestandardowe font-smooth (różne implementacje) */
	font-smooth: never;
	font-smooth: none;
}

canvas { 
    position: relative;
    z-index: 10;
    pointer-events: auto;
}
