.snowflake {
  position: fixed;
  top: -10px;
  z-index: 9999;
  color: #fff;
  pointer-events: none;
  animation: snowfall 10s linear infinite;
}

@keyframes snowfall {
  0% { transform: translateY(0); }
  100% { transform: translateY(100vh); }
}
