body{
    user-select: none;
    -webkit-user-select: none;
}

/* 🔹 WARNING OVERLAY */
    #warning {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: black;
        color: red;
        font-size: 30px;
        text-align: center;
        padding-top: 20%;
        z-index: 9999;
    }

    /* 🔹 BLUR EFFECT */
    .blur {
        filter: blur(10px);
    }