/* Страница 404 (error/not_found.tpl). Токены — от обёртки .rf-account. */
.rf-404 {
    padding: 52px 20px 56px;
    text-align: center;
}

.rf-404__code {
    font-size: 92px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.04em;
    background: linear-gradient(135deg, #1a3324 0%, #2d6a3e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.rf-404__title {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.01em;
    color: var(--rf-text);
    margin: 0 0 8px;
}

.rf-404__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--rf-text-muted);
    max-width: 520px;
    margin: 0 auto 24px;
}

.rf-404__actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.rf-404__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 180px;
    padding: 13px 22px;
    border-radius: 8px; /* --rf-radius-sm */
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s, border-color .15s, color .15s;
}

.rf-404__btn svg {
    width: 17px;
    height: 17px;
}

.rf-404__btn--primary {
    background: #2d6a3e; /* --rf-accent */
    color: #fff;
}

.rf-404__btn--primary:hover {
    background: #1f4a2c;
    color: #fff;
}

.rf-404__btn--ghost {
    background: #fff;
    border: 1px solid #c8d0c8; /* --rf-neutral-300 */
    color: var(--rf-text);
}

.rf-404__btn--ghost:hover {
    border-color: #2d6a3e;
    color: #1f4a2c;
}

.rf-404__hint {
    margin: 20px 0 0;
    font-size: 13px;
    color: var(--rf-text-muted);
}

@media (max-width: 480px) {
    .rf-404 {
        padding: 36px 16px 40px;
    }

    .rf-404__code {
        font-size: 72px;
    }

    .rf-404__title {
        font-size: 22px;
    }

    .rf-404__btn {
        min-width: 0;
        width: 100%;
    }
}
