/**
 * Snow Effect Styles
 */

#snow-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 9999;
	overflow: hidden;
}

.snowflake {
	position: absolute;
	background: white;
	border-radius: 50%;
	pointer-events: none;
	box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
	will-change: transform;
}

/* Ensure snow doesn't interfere with page interactions */
#snow-container * {
	pointer-events: none !important;
}

