/* ============================================
   ERROR PAGES - Premium Design
   ============================================ */

.error-page {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #FFF9F5 0%, #FFFFFF 50%, #FFF5F2 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

/* Error Code Animation */
.error-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.error-code {
    font-size: 100px;
    font-weight: 900;
    background: linear-gradient(135deg, #DC2626 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    animation: errorPulse 2s ease-in-out infinite alternate;
}

.error-icon {
    font-size: 56px;
    color: #F97316;
    animation: errorBounce 2s ease-in-out infinite;
    display: flex;
    align-items: center;
}

@keyframes errorPulse {
    from { opacity: 0.7; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes errorBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Title & Description */
.error-title {
    font-size: 28px;
    font-weight: 800;
    color: #1A1A2E;
    margin-bottom: 12px;
}

.error-desc {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* Action Buttons */
.error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.error-btn-primary {
    background: linear-gradient(120deg, #DC2626, #F97316);
    color: white;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.25);
}

.error-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.35);
    color: white;
}

.error-btn-secondary {
    background: white;
    color: #1A1A2E;
    border: 2px solid rgba(220, 38, 38, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.error-btn-secondary:hover {
    border-color: #DC2626;
    color: #DC2626;
    transform: translateY(-2px);
}

/* Popular Links */
.error-search {
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.error-search p {
    font-size: 13px;
    color: #9CA3AF;
    margin-bottom: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.error-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.error-links a {
    padding: 8px 18px;
    background: white;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    color: #6B7280;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.error-links a:hover {
    border-color: #F97316;
    color: #F97316;
    background: #FFF9F5;
}

/* Responsive */
@media (max-width: 576px) {
    .error-code {
        font-size: 70px;
    }

    .error-icon {
        font-size: 40px;
    }

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

    .error-desc {
        font-size: 14px;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-btn {
        width: 100%;
        justify-content: center;
    }
}
