/* Custom Cursor Stil Ayarları */
:root {
    --comlink-orange: #ff3f19;
}

/* İç nokta - YAVAS takip eder */
#cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--comlink-orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px rgba(255, 63, 25, 0.6);
    transition: all 0.15s ease-out;
}

/* Dış halka - YAVAŞ takip eder (ping efekti) */
#cursor-circle {
    position: fixed;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--comlink-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 63, 25, 0.3);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-out;
}

/* Click animasyonu - sadece halka */
#cursor-circle.clicked {
    animation: cursorPulse 0.3s ease;
}

@keyframes cursorPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Sadece mouse olan cihazlarda göster */
@media (pointer: coarse) {
    #cursor-dot,
    #cursor-circle {
        display: none !important;
    }
}

/* Hareket hassasiyeti olanlar için */
@media (prefers-reduced-motion: reduce) {
    #cursor-dot,
    #cursor-circle {
        transition: none !important;
        animation: none !important;
    }
}
