/* ========================================
   404 PAGE STYLES
   SlashExperts - Page Not Found
   ======================================== */

/* ========== PAGE CONTAINER ========== */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background: var(--white);
}

/* ========== ERROR CONTENT ========== */
.error-content {
    text-align: center;
    max-width: 500px;
}

.error-number {
    font-size: 140px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -8px;
    line-height: 1;
    margin-bottom: 24px;
    opacity: 0.08;
}

.error-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.error-subheading {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* ========== ERROR ACTIONS ========== */
.error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-action.primary {
    background: var(--navy);
    color: white;
}

.btn-action.primary:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.btn-action.secondary {
    background: var(--off-white);
    color: var(--navy);
    border: 1px solid var(--border);
}

.btn-action.secondary:hover {
    background: var(--border);
}

.btn-action svg {
    width: 18px;
    height: 18px;
}

/* ========== DIVIDER ========== */
.divider {
    width: 48px;
    height: 1px;
    background: var(--border);
    margin: 0 auto 32px;
}

/* ========== QUICK LINKS ========== */
.quick-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 8px 16px;
    border-radius: 100px;
}

.quick-link:hover {
    color: var(--violet);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .page-container {
        padding: 100px 20px 60px;
    }

    .error-number {
        font-size: 100px;
        letter-spacing: -4px;
    }

    .error-heading {
        font-size: 26px;
    }

    .error-subheading {
        font-size: 15px;
    }

    .error-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-action {
        justify-content: center;
    }

    .quick-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .error-number {
        font-size: 80px;
        letter-spacing: -3px;
    }

    .error-heading {
        font-size: 22px;
    }
}
