/* --- Custom Cursor --- */
body,
a,
button,
input,
textarea,
label,
.modal-overlay,
.modal-content,
.close-modal,
.password-screen {
    cursor: none !important;
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 20002;
    pointer-events: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* --- Hover State (Blue) --- */
.cursor-dot.cursor-hover {
    background-color: #00bcd4;
    /* Bright Blue/Cyan */
}

.cursor-outline.cursor-hover {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(0, 188, 212, 0.1);
    border-color: #00bcd4;
}

/* Hide custom cursor on mobile to avoid double cursors/weirdness */
@media (hover: none) and (pointer: coarse) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }
}