body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #0d0d0e;
    font-family: 'main-regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
}

.error {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 40px 20px;
    text-align: center;
    gap: 16px;
}

.error-title {
    font-size: 64px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.error-sub {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin: 0;
    max-width: 500px;
    line-height: 1.6;
}

.error-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 12px 28px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-family: 'roboto-medium', serif;
}

.error-link:hover {
    background: rgb(100 100 100 / 0.25);
    color: #ffffff;
}

.error-link .material-symbols-outlined {
    font-size: 18px;
    margin: 0;
}