/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00f0ff;
}

/* Glassmorphism Utilities - HIGH PERFORMANCE MODE */
.glass {
    /* Falling back to simple transparency to remove GPU lag from backdrop-blur */
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ThreeJS Canvas defaults */
#webgl {
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
    pointer-events: none;
    /* Let clicks pass through to content */
}

/* Text Selection Glow */
::selection {
    background: rgba(0, 240, 255, 0.3);
    color: #fff;
}