uix-not-found-page {
    .error-page {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        height: 100svh;
        width: 100vw;
        background-color: #0e0e10;
        color: #f0f0f0;
        position: relative;
        overflow: hidden;
        padding: 0 20px;
        isolation: isolate;
        --accent: #414141;
    
        & .grid {
            --grid-size: 48px;
            --grid-size-min: 0%;
            --grid-color: rgba(78, 78, 78, 0.1);
            --grid-color-min: transparent;
            --grid-weight: 1px;
            --grid-weight-min: 1px;
            height: 120svh;
            opacity: 0.6;
            position: fixed;
            animation: move 1.5s linear infinite !important;
    
            box-shadow:
                rgba(0, 0, 0, 0) 0px 0px 0px 0px,
                rgba(0, 0, 0, 0) 0px 0px 0px 0px,
                rgb(9, 9, 11) 0px 0px 80px 48px inset;
            z-index: -1;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background-size: var(--grid-size) var(--grid-size);
            background-image:
                linear-gradient(90deg, #8882 1px, transparent 0),
                linear-gradient(180deg, #8882 1px, transparent 0);
            background-position: 15px 0;
        }
    
        & h1 {
            margin: 0;
            font-size: 6rem;
            color: white;
            letter-spacing: 5px;
            animation: fadeIn 1s ease-in-out;
        }
    
        & p {
            font-size: 1.5rem;
            opacity: 0.85;
            margin-top: 10px;
            animation: fadeIn 1.5s ease-in-out;
        }
    
        & a {
            padding: 14px 12px;
            border: 2px solid var(--accent);
            background-color: var(--accent);
            color: white;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: fadeIn 2s ease-in-out;
    
            &:hover {
                background-color: transparent;
                box-shadow: 0 0 10px var(--accent);
            }
        }
    }
    
    /* [[UIX moved @keyframes]] */
    
    
    
}

@keyframes move {
    0% {
        transform: translate(0);
    }

    to {
        transform: translateY(-48px);
    }
}