.sparkle {
    position: absolute;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0)); /* Daha saydam */
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.5; /* Daha saydam */
    animation: sparkle-animation 1.5s forwards;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.3); /* Yumuşak ışık halkaları */
}


@keyframes sparkle-animation {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.5) rotate(360deg);
        opacity: 0.3;
    }
    100% {
        transform: scale(0) rotate(720deg);
        opacity: 0;
    }
}