/*
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.3
License: MIT
License URI: https://opensource.org/licenses/MIT
Text Domain: tema-vergine
*/

/* 
 * CSS Reset Totale - Tabula Rasa Assoluta
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Prevenzione interferenze WP minime */
body {
    line-height: 1;
    background: transparent;
}

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

/* ANTI-CDN: forza rendering */
body {
    content-visibility: auto;
}

/* Forza paint su elementi principali */
body > * {
    transform: translateZ(0);
}
