/* === Pixel Loader === */
.pixel-loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: none;            /* скрыт по умолчанию */
    align-items: center;
    justify-content: center;
}

.pixel-loader--active {
    display: flex;            /* страница включает когда нужно */
}

.pixel-loader canvas {
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}
