/* Snow effect specific styles */
#modular-effect-snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: visible;
}

.snowflake {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

/* Style for image snowflakes */
.snowflake.image-snow {
    display: block;
    object-fit: contain;
}