.error-404 {
    padding: 120px 0;
    background: var(--color-bg);
    text-align: center;
}

.error-404__inner {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.error-404__code {
    font-family: var(--font-display);
    font-size: 140px;
    line-height: 1;
    color: #fff;
    text-shadow: 0 8px 24px rgba(255, 106, 42, 0.4);
}

.error-404__title {
    font-family: var(--font-display);
    font-size: 44px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.04em;
}

.error-404__text {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

@media (max-width: 600px) {
    .error-404 { padding: 80px 0; }
    .error-404__code { font-size: 96px; }
    .error-404__title { font-size: 28px; }
}
