/* --- FUNDAL PAGINĂ --- */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
}

/* --- CONTAINERUL DE ZĂPADĂ --- */
#snow {
    position: fixed !important; /* Forțează raportarea la monitor, nu la pagină */
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    pointer-events: none; 
    z-index: 999998 !important; /* Peste aproape orice element */
    overflow: hidden;
}

/* --- FULGII --- */
.snowflake {
    position: fixed !important;
    top: -20px;
    background: white;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px white);
    z-index: 999999 !important;
}

/* --- DEPUNEREA DE ZĂPADĂ (JOS) --- */
#snow-pile {
    position: fixed !important; /* Rămâne lipit de marginea de jos a monitorului la scroll */
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 0; 
    background: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%, white 100%);
    box-shadow: 0 -8px 20px 5px rgba(255, 255, 255, 0.6);
    z-index: 1000000 !important; /* Cel mai înalt strat */
    transition: height 30s ease-in-out; 
    pointer-events: none;
}