/* Imleci hedef ikonu olarak değiştirin */
body {
    cursor: url(http://www.test.hazarmakine.com/wp-content/uploads/2024/11/target-icon-1.png), auto;
}

/* Tıklama efektini uygulamak için stil */
.crack-effect {
    position: absolute;
    width: 50px; /* Çatlak efektinin boyutu */
    height: 50px;
    background: url('crack-icon.png') no-repeat center center;
    background-size: cover;
    pointer-events: none;
    animation: crack-animation 0.5s ease-out forwards;
}

@keyframes crack-animation {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(1.5);
    }
}
