/* CUSTOM CURSOR - UX ENHANCEMENT */
@media (min-width: 1025px) {
    body {
        cursor: none;
        /* Hide default cursor only on large screens */
    }
}

/* Fallback for touch devices */
@media (hover: none) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

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

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-cyan);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9998;
    pointer-events: none;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Hover State */
body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(86, 186, 231, 0.1);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(86, 186, 231, 0.2);
}

body.hovering .cursor-dot {
    opacity: 0;
    /* Hide dot on hover for cleaner look */
}