/* CURSOR STYLES */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #00ccff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 20px #00ccff,
        0 0 40px #00ccff,
        inset 0 0 10px rgba(0, 204, 255, 0.3);
    background: rgba(0, 204, 255, 0.1);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #00ccff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 15px #00ccff,
        0 0 30px #00ccff;
    transition: transform 0.2s, background 0.3s;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* CURSOR CIRCLE EFFECT */
.cursor-circle {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 204, 255, 0.6);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    animation: circlePulse 0.8s ease-out forwards;
}

/* HOVER STATES */
.cursor.hover {
    width: 40px;
    height: 40px;
    border-color: #00ffcc;
    background: rgba(0, 255, 204, 0.2);
    box-shadow: 
        0 0 30px #00ffcc,
        0 0 60px #00ffcc,
        inset 0 0 15px rgba(0, 255, 204, 0.4);
}

.cursor-dot.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: #00ffcc;
}

/* CLICK STATE */
.cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(0, 204, 255, 0.3);
}

/* ANIMATIONS */
@keyframes circlePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

@keyframes cursorPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* HIDE CURSOR ON MOBILE */
@media (max-width: 768px) {
    .cursor, .cursor-dot, .cursor-circle {
        display: none !important;
    }
}