/* Зимняя тема - Падающие снежинки */
.snow-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 9999;
	overflow: hidden;
}

.snowflake {
	position: absolute;
	top: -10px;
	color: #fff;
	font-size: 1em;
	font-family: Arial, sans-serif;
	text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
	user-select: none;
	pointer-events: none;
	opacity: 0.8;
	animation: snowfall linear infinite;
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 10s; animation-delay: 0s; font-size: 0.8em; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 1s; font-size: 1em; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 14s; animation-delay: 2s; font-size: 0.9em; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 11s; animation-delay: 0.5s; font-size: 1.1em; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 13s; animation-delay: 1.5s; font-size: 0.85em; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 15s; animation-delay: 2.5s; font-size: 1.05em; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 10s; animation-delay: 0.3s; font-size: 0.95em; }
.snowflake:nth-child(8) { left: 80%; animation-duration: 12s; animation-delay: 1.8s; font-size: 1.15em; }
.snowflake:nth-child(9) { left: 90%; animation-duration: 14s; animation-delay: 0.8s; font-size: 0.9em; }
.snowflake:nth-child(10) { left: 15%; animation-duration: 11s; animation-delay: 2.2s; font-size: 1em; }
.snowflake:nth-child(11) { left: 25%; animation-duration: 13s; animation-delay: 0.7s; font-size: 0.85em; }
.snowflake:nth-child(12) { left: 35%; animation-duration: 15s; animation-delay: 1.3s; font-size: 1.1em; }
.snowflake:nth-child(13) { left: 45%; animation-duration: 10s; animation-delay: 2.7s; font-size: 0.95em; }
.snowflake:nth-child(14) { left: 55%; animation-duration: 12s; animation-delay: 0.4s; font-size: 1.05em; }
.snowflake:nth-child(15) { left: 65%; animation-duration: 14s; animation-delay: 1.6s; font-size: 0.9em; }
.snowflake:nth-child(16) { left: 75%; animation-duration: 11s; animation-delay: 2.4s; font-size: 1.15em; }
.snowflake:nth-child(17) { left: 85%; animation-duration: 13s; animation-delay: 0.9s; font-size: 0.8em; }
.snowflake:nth-child(18) { left: 95%; animation-duration: 15s; animation-delay: 1.7s; font-size: 1em; }
.snowflake:nth-child(19) { left: 5%; animation-duration: 12s; animation-delay: 0.2s; font-size: 0.95em; }
.snowflake:nth-child(20) { left: 45%; animation-duration: 14s; animation-delay: 2.1s; font-size: 1.05em; }

@keyframes snowfall {
	0% {
		transform: translateY(0) translateX(0) rotate(0deg);
		opacity: 0.8;
	}
	50% {
		transform: translateX(20px) rotate(180deg);
		opacity: 1;
	}
	100% {
		transform: translateY(100vh) translateX(-20px) rotate(360deg);
		opacity: 0.3;
	}
}

/* Дополнительные стили для зимней темы */
body.winter-theme {
	/* Можно добавить дополнительные стили для зимней темы */
}

/* Адаптивность - уменьшаем количество снежинок на мобильных */
@media (max-width: 768px) {
	.snowflake:nth-child(n+11) {
		display: none;
	}
}

