/* Custom cursor styles */
* {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 160px;
    height: 160px;
    background: url('Assets/temple_black.png') no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

.custom-cursor.clicking {
    transform: translate(-50%, -50%) scale(1.2);
}

/* Fallback for devices that don't support custom cursors */
@media (hover: none) and (pointer: coarse) {
    * {
        cursor: auto;
    }
    
    .custom-cursor {
        display: none;
    }
}