.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #68f91f;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 20px #68f91f, 0 0 40px #68f91f, inset 0 0 10px #68f91f;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #68f91f;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    box-shadow: 0 0 10px #68f91f;
    transform: translate(-50%, -50%);
}

body {
    cursor: none;
}

a, button, input, textarea, select, [role="button"] {
    cursor: none;
}

/* Hover state styles */
.cursor-hover {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(104, 249, 31, 0.1);
}
