/*
Theme Name: Tema Vergine
Theme URI: https://example.com/tema-vergine
Author: Wolf
Author URI: https://example.com
Description: Ultra-minimalist "Barebone" theme for hosting custom HTML/Canvas/JS/CSS without interference. Ottimizzato anti-CDN per Hostinger.
Version: 1.7
License: MIT
License URI: https://opensource.org/licenses/MIT
Text Domain: tema-vergine
*/

/* * CSS Reset Totale - Tabula Rasa Assoluta
 */
/* * CSS Reset Mirato - Sostituisce il selettore universale (*) per zittire l'editor */
html, body, main, section, article, header, footer, nav, div, p, h1, h2, h3, h4, h5, h6, ul, ol, li, figure, figcaption, blockquote, a, img, span, form, input, button, textarea {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Applichiamo il box-sizing anche agli pseudo-elementi principali per mantenere la coerenza */
::before, ::after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

/* Prevenzione interferenze WP minime */
body {
    line-height: 1;
    background: transparent;
    /* Rimosso content-visibility: auto per evitare il freeze al caricamento */
}

img {
    max-width: none;
    display: block;
}

/* ANTI-CDN: Forza il ridisegno hardware solo sugli elementi necessari */
/* Invece di bloccare il rendering, usiamo la GPU per rendere tutto fluido */
/* RIMUOVI QUESTE RIGHE:
body > * {
    transform: translateZ(0);
    will-change: transform;
}
*/