/* === Nazik və zərif Yeni il qarı === */
.snowflake {
  position: fixed;
  top: -10px;
  z-index: 9999;
  user-select: none;
  pointer-events: none;

  font-weight: 400;      /* nazik */
  text-shadow: none;     /* kölgə YOX */
  opacity: 0.6;          /* yumşaq görünüş */

  animation-name: fall, sway;
  animation-iteration-count: infinite;
  animation-timing-function: linear, ease-in-out;
}

/* Yuxarıdan aşağı düşmə */
@keyframes fall {
  0% { top: -10px; }
  100% { top: 100vh; }
}

/* Yüngül sağ-sol hərəkət */
@keyframes sway {
  0% { transform: translateX(0); }
  50% { transform: translateX(20px); }
  100% { transform: translateX(0); }
}