/* 404 Error Page Styles */

.error-404-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    /* Takes up most of the viewport */
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    background-color: var(--color-background);
}

.error-404-content {
    max-width: 600px;
    width: 100%;
}

.error-code {
    font-size: 120px;
    line-height: 1;
    margin-bottom: 32px;
    /* Explicit large gap */
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.error-title {
    margin-bottom: 24px;
    /* Explicit gap */
    color: var(--color-text-primary);
}

.error-description {
    margin-bottom: 48px;
    /* Explicit large gap before button */
    color: var(--color-text-secondary);
}