/* =========================
   Error Card Styles
========================= */
.error-card {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    padding: 2rem 2.5rem;
    max-width: 480px;
    width: 100%;
    animation: fadeInUp 0.6s ease;
}

.error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--color-danger);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: popIn 0.6s ease;
}

.error-card h1 {
    color: var(--color-danger);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.error-card p {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}
