/* Markalı bağımsız hata sayfaları (StatusCode, tenant hataları) */
.site-error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
    font-family: 'Manrope', system-ui, sans-serif;
    background: linear-gradient(165deg, #f0f4fc 0%, #e8eef9 45%, #f8fafc 100%);
    color: #1e293b;
}
.site-error-card {
    max-width: 28rem;
    width: 100%;
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 64, 161, 0.1);
    border: 1px solid rgba(0, 64, 161, 0.08);
}
.site-error-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1.25rem;
    background: rgba(0, 64, 161, 0.08);
    color: #0040A1;
    margin-bottom: 1.25rem;
}
.site-error-icon .material-symbols-outlined {
    font-size: 2.25rem;
    font-variation-settings: 'FILL' 1;
}
.site-error-code {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0040A1;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.site-error-heading {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #0f172a;
}
.site-error-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}
.site-error-desc code {
    background: #f1f5f9;
    padding: 0.15rem 0.45rem;
    border-radius: 0.35rem;
    font-size: 0.85rem;
    word-break: break-all;
}
.site-error-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #0040A1;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.site-error-btn:hover {
    background: #003080;
    transform: translateY(-1px);
}
@media (prefers-reduced-motion: reduce) {
    .site-error-btn { transition: none; }
    .site-error-btn:hover { transform: none; }
}
