.error-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 28px;

    color: #fff;
    /* background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); */
}

.error-container h1 {
    font-size: 10rem;
    background: linear-gradient(135deg, #FFD54F 0%, #FFA726 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 16px rgba(255, 193, 7, 0.25);
    margin: 0;
}

.error-container p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 1rem 0 2rem 0;
}

.btn-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, #FFD54F, #FFA726);
    color: #111;
    font-weight: 800;
    text-decoration: none;
    border: none;
    box-shadow: 0 10px 22px rgba(255, 193, 7, 0.28);
    transition: transform .15s ease, filter .2s ease, box-shadow .2s ease;
}

.btn-home:hover {
    transform: translateY(-1px);
    filter: brightness(.95);
    box-shadow: 0 12px 26px rgba(255, 193, 7, 0.34);
}

@keyframes fadeUp404 {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-container {
    animation: fadeUp404 .28s ease;
}