/* Modern Minimal Event Cursor */
.cursor-dot {
    position: fixed;
    left: 0;
    top: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff, rgba(65, 84, 241, 0.85));
    box-shadow: 0 0 0 1px rgba(65, 84, 241, 0.15), 0 0 8px rgba(65, 84, 241, 0.25);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 200ms ease, transform 120ms ease;
    z-index: 999999;
    will-change: transform;
}

.cursor-ring {
    position: fixed;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(65, 84, 241, 0.45);
    box-shadow: 0 0 12px rgba(65, 84, 241, 0.2);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease, border-color 200ms ease;
    z-index: 999998;
    will-change: transform;
}

.cursor--hidden {
    opacity: 0 !important;
}

.cursor--hover .cursor-ring {
    transform: translate(-50%, -50%) scale(1.25);
    border-color: rgba(248, 90, 0, 0.65);
}

.cursor--active .cursor-ring {
    transform: translate(-50%, -50%) scale(0.9);
    border-color: rgba(248, 90, 0, 0.9);
}

/* Lightweight confetti for click feedback (event vibe) */
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .cursor-dot,
    .cursor-ring {
        transition: none;
        animation: none;
    }
}
