/**
 * Custom Cursor Styles
 * Amazing cursor pointer for the entire website
 */

* {
    cursor: none !important;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #6B21A8;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, width 0.15s ease, height 0.15s ease, border-color 0.15s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #6B21A8;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    border-color: #DC2626;
    background: rgba(220, 38, 38, 0.1);
}

.custom-cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
    border-color: #DC2626;
}

.custom-cursor-dot.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: #DC2626;
}

/* Hide custom cursor on mobile */
@media (max-width: 768px) {
    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
    
    * {
        cursor: auto !important;
    }
}

