    /* 404 Page Styles */
    
    .error-main {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgb(var(--bg));
        color: rgb(var(--fg));
        padding: 2rem 1rem;
    }
    .error-main.container{
        display: flex;
        justify-content: center;
    }

    .error-content {
        text-align: center;
        max-width: 600px;
        width: 100%;
    }

    .error-visual {
        position: relative;
        margin-bottom: 3rem;
    }

    .error-number {
        font-size: clamp(6rem, 15vw, 12rem);
        font-weight: 900;
        line-height: 1;
        background: linear-gradient(135deg, rgb(var(--accent-start)), rgb(var(--accent-end)));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
        opacity: 0.9;
    }

    .error-icon {
        color: rgb(var(--muted));
        opacity: 0.6;
    }

    .error-text {
        margin-bottom: 3rem;
    }

    .error-title {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 700;
        margin-bottom: 1rem;
        color: rgb(var(--fg));
    }

    .error-description {
        font-size: 1.125rem;
        line-height: 1.6;
        max-width: 500px;
        margin: 0 auto 2rem;
    }

    .error-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 3rem;
    }

    .error-actions .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.2s ease;
        background: none;
        font-family: inherit;
    }

    .error-actions .btn-primary {
        background: linear-gradient(135deg, rgb(var(--accent-start)), rgb(var(--accent-end)));
        color: white;
    }

    .error-actions .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

    .error-actions .btn-secondary {
        background: rgb(var(--card));
        color: rgb(var(--fg));
        border: 1px solid rgb(var(--border));
    }

    .error-actions .btn-secondary:hover {
        background: rgb(var(--muted) / 0.1);
        transform: translateY(-1px);
    }

    .error-suggestions {
        background: rgb(var(--card));
        padding: 2rem;
        border: 1px solid rgb(var(--border));
        box-shadow: var(--shadow);
    }

    .error-suggestions h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: rgb(var(--fg));
    }

    .suggestion-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
    }

    .suggestion-list li {
        margin: 0;
    }

    .suggestion-list a {
        display: block;
        padding: 0.75rem 1rem;
        background: rgb(var(--bg));
        color: rgb(var(--fg));
        text-decoration: none;
        border: 1px solid rgb(var(--border));
        transition: all 0.2s ease;
        font-weight: 500;
    }

    .suggestion-list a:hover {
        background: rgb(var(--accent) / 0.1);
        border-color: rgb(var(--accent) / 0.3);
        color: rgb(var(--accent));
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .error-main {
            padding: 1rem;
        }

        .error-actions {
            flex-direction: column;
            align-items: center;
        }

        .btn {
            width: 100%;
            max-width: 280px;
            justify-content: center;
        }

        .suggestion-list {
            grid-template-columns: 1fr;
        }

        .error-suggestions {
            padding: 1.5rem;
        }
    }

    /* Dark theme adjustments */
    html[data-theme="dark"] .error-suggestions {
        background: rgb(var(--card));
        border-color: rgb(var(--border));
    }

    html[data-theme="dark"] .suggestion-list a {
        background: rgb(var(--bg));
        border-color: rgb(var(--border));
    }

    /* header{
        .btn{
            padding: 10px 14px;
            border: 1px solid rgb(var(--border));
        }
    } */

