/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-1pcwc9fshs] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-1pcwc9fshs] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/NotFound.razor.rz.scp.css */
/* #################################################################
                            Not Found Page
*  ################################################################# */

*[b-x9a6gb3cvo] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-x9a6gb3cvo] {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #00ffff;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Animated background particles */
.particles[b-x9a6gb3cvo] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle[b-x9a6gb3cvo] {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00ffff;
    border-radius: 50%;
    animation: float-b-x9a6gb3cvo 6s infinite linear;
    opacity: 0.7;
}

@keyframes float-b-x9a6gb3cvo {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* Glitch effect */
.glitch[b-x9a6gb3cvo] {
    position: relative;
    color: #00ffff;
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    animation: glitch-b-x9a6gb3cvo 2s infinite;
}

    .glitch[b-x9a6gb3cvo]::before,
    .glitch[b-x9a6gb3cvo]::after {
        content: attr(data-text);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .glitch[b-x9a6gb3cvo]::before {
        animation: glitch-1-b-x9a6gb3cvo 0.5s infinite;
        color: #ff0040;
        z-index: -1;
    }

    .glitch[b-x9a6gb3cvo]::after {
        animation: glitch-2-b-x9a6gb3cvo 0.5s infinite;
        color: #00ff40;
        z-index: -2;
    }

@keyframes glitch-b-x9a6gb3cvo {
    0%, 100% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-1-b-x9a6gb3cvo {
    0%, 100% {
        transform: translate(0);
    }

    20% {
        transform: translate(2px, -2px);
    }

    40% {
        transform: translate(-2px, 2px);
    }

    60% {
        transform: translate(-2px, -2px);
    }

    80% {
        transform: translate(2px, 2px);
    }
}

@keyframes glitch-2-b-x9a6gb3cvo {
    0%, 100% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(-2px, -2px);
    }
}

.container[b-x9a6gb3cvo] {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.error-code[b-x9a6gb3cvo] {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ff6b6b;
    animation: pulse-b-x9a6gb3cvo 2s infinite;
}

@keyframes pulse-b-x9a6gb3cvo {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.error-message[b-x9a6gb3cvo] {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #b8b8b8;
    max-width: 600px;
    line-height: 1.6;
}

.buttons[b-x9a6gb3cvo] {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.btn[b-x9a6gb3cvo] {
    padding: 15px 30px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border: none;
    border-radius: 50px;
    color: #000;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

    .btn[b-x9a6gb3cvo]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.5s;
    }

    .btn:hover[b-x9a6gb3cvo]::before {
        left: 100%;
    }

    .btn:hover[b-x9a6gb3cvo] {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
        background: linear-gradient(45deg, #00ff80, #0040ff);
    }

    .btn.secondary[b-x9a6gb3cvo] {
        background: linear-gradient(45deg, #333, #666);
        color: #fff;
    }

        .btn.secondary:hover[b-x9a6gb3cvo] {
            background: linear-gradient(45deg, #555, #888);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
        }

/* Circuit pattern */
.circuit[b-x9a6gb3cvo] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: linear-gradient(90deg, #00ffff 1px, transparent 1px), linear-gradient(#00ffff 1px, transparent 1px);
    background-size: 50px 50px;
    animation: circuit-move-b-x9a6gb3cvo 20s linear infinite;
}

@keyframes circuit-move-b-x9a6gb3cvo {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Holographic effect */
.hologram[b-x9a6gb3cvo] {
    position: relative;
    overflow: hidden;
}

    .hologram[b-x9a6gb3cvo]::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
        animation: scan-b-x9a6gb3cvo 3s infinite;
        z-index: -3;
    }

@keyframes scan-b-x9a6gb3cvo {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .glitch[b-x9a6gb3cvo] {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .error-message[b-x9a6gb3cvo] {
        font-size: 1rem;
        padding: 0 20px;
    }

    .buttons[b-x9a6gb3cvo] {
        flex-direction: column;
        align-items: center;
    }

    .btn[b-x9a6gb3cvo] {
        width: 200px;
    }
}

/* Loading animation */
.loading[b-x9a6gb3cvo] {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #333;
    border-radius: 50%;
    border-top-color: #00ffff;
    animation: spin-b-x9a6gb3cvo 1s ease-in-out infinite;
    margin-left: 10px;
}

@keyframes spin-b-x9a6gb3cvo {
    to {
        transform: rotate(360deg);
    }
}

/* Status indicator */
.status[b-x9a6gb3cvo] {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #ff6b6b;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #ff6b6b;
    animation: blink-b-x9a6gb3cvo 2s infinite;
}

@keyframes blink-b-x9a6gb3cvo {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0.5;
    }
}
