.snowflakes {
    z-index: 150;
    pointer-events: none;
    width: 100%;
    height: 1200px;
    position: absolute;
    top: -90px;
    left: 0;
    filter: blur(0);
}

i {
    display: inline-block;
    
    background-image: url('https://cdn.tebex.io/store/939927/templates/207218/assets/4c76c243bcc90d2774e2985d4c95450bf2b8a8cb.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-animation: sakuraFall 3s linear 2s infinite;
    -moz-animation: sakuraFall 3s linear 2s infinite;
    position: relative;
}

@-webkit-keyframes sakuraFall {
    0% {
        -webkit-transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
    100% {
        -webkit-transform: translate3d(15px, 1200px, 0px) rotate(360deg) scale(1);
    }
}

.snowflakes i:nth-child(3n) {
    width: 10px; /* Daha küçük yaprak */
    height: 15px;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: right -45px;
}

.snowflakes i:nth-child(3n+1) {
    width: 20px; /* Daha büyük yaprak */
    height: 25px;
    -webkit-animation-duration: 6s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: right -30px;
}

.snowflakes i:nth-child(3n+2) {
    width: 25px; /* Orta boy yaprak */
    height: 30px;
    -webkit-animation-duration: 8s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: right -15px;
}

/* Farklı opaklık ve gecikme */
.snowflakes i:nth-child(7n) {
    opacity: .3;
    -webkit-animation-delay: 0s;
    -webkit-animation-timing-function: ease-in;
}
.snowflakes i:nth-child(7n+1) {
    opacity: .4;
    -webkit-animation-delay: 1s;
    -webkit-animation-timing-function: ease-out;
}
.snowflakes i:nth-child(7n+2) {
    opacity: .5;
    -webkit-animation-delay: 1.5s;
    -webkit-animation-timing-function: linear;
}
.snowflakes i:nth-child(7n+3) {
    opacity: .6;
    -webkit-animation-delay: 2s;
    -webkit-animation-timing-function: ease-in;
}
.snowflakes i:nth-child(7n+4) {
    opacity: .7;
    -webkit-animation-delay: 2.5s;
    -webkit-animation-timing-function: linear;
}
.snowflakes i:nth-child(7n+5) {
    opacity: .8;
    -webkit-animation-delay: 3s;
    -webkit-animation-timing-function: ease-out;
}
.snowflakes i:nth-child(7n+6) {
    opacity: .9;
    -webkit-animation-delay: 3.5s;
    -webkit-animation-timing-function: ease-in;
}
