.notfound-page {
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    background: #f5f7fb;
}

.notfound-container {
    max-width: 480px;
    width: 100%;
    text-align: center;
}

.notfound-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}

.notfound-icon svg {
    width: 34px;
    height: 34px;
}

.notfound-code {
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.notfound-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.notfound-desc {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 2rem;
}

.notfound-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nf-btn {
    display: inline-block;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.15s ease;
}

.nf-btn--primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.nf-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.nf-btn--outline {
    border: 1.5px solid #10b981;
    color: #10b981;
    background: transparent;
}

.nf-btn--outline:hover {
    background: #10b981;
    color: #fff;
}

@media (max-width: 480px) {
    .notfound-actions {
        flex-direction: column;
        align-items: center;
    }

    .nf-btn {
        width: 100%;
        text-align: center;
    }
}
