.error-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.error-text {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.8;
}

/* Button-Like Links */
.error-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0066cc 0%, #0055aa 100%);
    color: white !important;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.25);
    transition: 0.3s;
    margin: 0 10px;
}

.error-btn:hover {
    background: linear-gradient(135deg, #004999 0%, #003d7a 100%);
    transform: translateY(-2px);
}

.error-btn-secondary {
    background: #64748b;
}

.error-btn-secondary:hover {
    background: #475569;
}