/* Malaysia flag snowfall — desktop only, lightweight */
#aw-my-snowfall{
  position:fixed;
  inset:0;
  pointer-events:none;
  overflow:hidden;
  z-index:5;
  contain:strict;
}
.aw-my-flake{
  position:absolute;
  top:-48px;
  width:14px;
  height:14px;
  background:url('/assets/malaysia-flag-circle.svg') center/contain no-repeat;
  opacity:.55;
  animation-name:awMyFall;
  animation-timing-function:linear;
  animation-iteration-count:infinite;
  will-change:transform;
  transform:translateZ(0);
}
.aw-my-flake.s2{width:11px;height:11px;opacity:.4}
.aw-my-flake.s3{width:16px;height:16px;opacity:.65}
@keyframes awMyFall{
  0%{transform:translate3d(0,-10vh,0) rotate(0deg)}
  100%{transform:translate3d(var(--drift,16px),110vh,0) rotate(280deg)}
}
@media (prefers-reduced-motion: reduce){
  #aw-my-snowfall{display:none!important}
}
/* Hard disable on mobile / tablet for smoothness */
@media (max-width: 900px){
  #aw-my-snowfall{display:none!important}
}
