/* Custom Cursor Styles */
body,
a,
button,
input,
textarea,
select,
label,
.hoverable {
    cursor: none !important;
}

/* Exception for Help Cursor */
.help,
[title] {
    cursor: help !important;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #ffaa00;
    border-radius: 50%;
    pointer-events: none;
    z-index: 20000;
    transform: translate(-50%, -50%);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), height 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s;
    mix-blend-mode: difference;
}

.custom-cursor.active {
    width: 8px;
    /* Shrink to dot */
    height: 8px;
    background-color: #ffffff;
    border-color: #ffaa00;
    opacity: 1;
    mix-blend-mode: normal;
}

/* Ensure mousemove GSAP logic is handled in JS */

/* Shared Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}