/* 404 Page */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height) - 200px);
    padding: var(--space-8) 0;
}

.error-content {
    max-width: 500px;
    margin: 0 auto;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-4);
}

.error-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.error-description {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
}
