/* Custom cursor removed: use native OS cursor everywhere */
html,
body,
* {
    cursor: auto !important;
}

a,
button,
input[type="button"],
input[type="submit"],
label[for],
select {
    cursor: pointer !important;
}

.custom-cursor,
.custom-cursor-dot,
.cursor-trail,
.click-ripple,
.click-particle {
    display: none !important;
}

/* Text Selection Styling */
::selection {
    background: rgba(139, 92, 246, 0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(139, 92, 246, 0.3);
    color: #fff;
}
