/* Global Loader 3D Overlay */
#global-loader-3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 26, 0.85);
    /* Dark overlay */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    backdrop-filter: blur(4px);
    /* Blur effect for modern feel */
}

#global-loader-3d.visible {
    opacity: 1;
    pointer-events: all;
}

#loader-canvas-container {
    width: 200px;
    height: 200px;
    position: relative;
    /* Center the canvas */
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader-canvas-container canvas {
    width: 100% !important;
    height: 100% !important;
    outline: none;
}