/* EMERGENCY SCROLL FIX - LOADED LAST */
html,
body {
    overflow-y: scroll !important;
    height: auto !important;
    min-height: 100% !important;
    position: static !important;
    touch-action: auto !important;
}

/* KILL ALL POTENTIAL SCROLL-BLOCKING OVERLAYS ONLY */
.modal-overlay,
body::before,
body::after {
    pointer-events: none !important;
}

/* UNLOCK CONTAINER */
.tech-app-container {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    position: static !important;
}

/* FORCE WHEEL EVENTS */
* {
    touch-action: manipulation !important;
}