/* style.css - Strict Uncodixfy Utilities */

* {
    /* Hard custom cursor requirement overrides default pointer */
    cursor: none !important;
}

body {
    -webkit-user-drag: none;
    background-color: #000000;
}

/* Custom Cursor - Strict Inversion Block */
.cursor-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: white;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    z-index: 99999;
    pointer-events: none;
    transition: width 0.1s ease, height 0.1s ease;
}

/* Subtle expansion on hover, NO glow */
.cursor-hover .cursor-block {
    width: 24px;
    height: 24px;
}

/* Hide cursor on mobile devices */
@media (max-width: 768px) {
    * { cursor: auto !important; }
    .cursor-block { display: none !important; }
}

/* Utility to unhide main container without scaling blobs/glows */
.loaded {
    opacity: 1 !important;
}
