
* {
    user-select: none;
    font-family: 'Satoshi', 'sans-serif';
}


html, body {
    margin: 0;
    background-color: rgb(11, 11, 11);
    color: white;
}


.center-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.6) 0%, rgba(11, 11, 11, 0.9) 100%);
    z-index: 10;
}

.error-card {
    background: rgba(11, 11, 11, 0.85);
    color: white;
    width: 90%;
    max-width: 500px;
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    animation: fadeIn 0.8s ease-out;

    /* Glow + depth */
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 0 5px rgba(255, 255, 255, 0.3),
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 15px rgba(255, 255, 255, 0.3);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    box-sizing: border-box;
}

.error-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px var(--name-text-shadow-color);
    margin-bottom: 10px;
}

.error-subtext {
    font-size: 16px;
    color: var(--bio-font-color);
    margin-bottom: 5px;
}

.error-description {
    font-size: 16px;
    color: #bbbbbb;
    font-family: var(--bio-font-family);
    text-shadow: 0 var(--bio-text-shadow-size) var(--bio-text-shadow-color);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}