.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    /* Highest priority */
    opacity: 1;
    /* Handled by pixel alpha */
    mix-blend-mode: overlay;
    /* Better blending */
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto Mono', 'Courier New', monospace;
    color: #fff;
}

.loader-content {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}