/* Snowflake styles */
.flake {
    position: fixed;
    top: -60px;
    pointer-events: none;
    user-select: none;
    color: #ffffff;
    opacity: 0.95;
    will-change: transform;
    z-index: 9999; /* High z-index to sit on top */
}

/* The Canvas for the mound */
#snowMoundCanvas {
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 130px; /* Synchronized with js/snow.js cssHeight value */
    z-index: 9998; /* Just below the flakes */
    pointer-events: none;
}

