/* Контейнер для снежинок */
.theme-winter .falling-snow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px; /* область над профилем */
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Снежинка */
.theme-winter .snowflake {
  position: absolute;
  top: -40px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0,0,0,0.2);
  opacity: 0.9;
  animation: snowfall linear forwards;
}

/* Анимация падения снежинок */
@keyframes snowfall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(200px) rotate(360deg);
    opacity: 0;
  }
}
