/**
 * 前台状态页（系统跳转提示 / 404）样式
 * 与认证页、首页主色 #6366f1 对齐；Tailwind CDN 不可用时作为布局兜底。
 */

.pa-status-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: #f8fafc;
    overflow-x: hidden;
    font-family: 'Noto Sans SC', system-ui, sans-serif;
    color: #1e293b;
}

.pa-status-aurora {
    pointer-events: none;
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
}

.pa-status-aurora-left {
    left: -8rem;
    top: -8rem;
    width: 28rem;
    height: 28rem;
    background: rgba(99, 102, 241, 0.1);
}

.pa-status-aurora-right {
    right: -6rem;
    bottom: 0;
    width: 20rem;
    height: 20rem;
    background: rgba(168, 85, 247, 0.1);
}

.pa-status-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 28rem;
    padding: 2.5rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2e8f0;
    border-radius: 1.75rem;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.12);
}

.pa-status-icon {
    width: 5.5rem;
    height: 5.5rem;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pa-status-icon img {
    width: 2.75rem;
    height: 2.75rem;
}

.pa-status-icon--success {
    background: rgba(99, 102, 241, 0.12);
}

.pa-status-icon--error {
    background: rgba(244, 63, 94, 0.12);
}

.pa-status-icon--info {
    background: rgba(99, 102, 241, 0.12);
}

.pa-status-icon--404 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.15));
    font-size: 1.75rem;
    font-weight: 800;
    color: #6366f1;
}

.pa-status-title {
    margin: 0 0 0.75rem;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1e293b;
}

.pa-status-desc {
    margin: 0 0 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
}

.pa-status-desc #wait {
    font-weight: 700;
    color: #6366f1;
}

.pa-status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.pa-status-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 8.25rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: opacity 0.15s, box-shadow 0.15s;
    cursor: pointer;
    border: 1px solid transparent;
}

.pa-status-btn:hover {
    opacity: 0.92;
    text-decoration: none;
}

.pa-status-btn--ghost {
    color: #6366f1;
    background: #eef2ff;
    border-color: #e0e7ff;
}

.pa-status-btn--ghost:hover {
    color: #4f46e5;
}

.pa-status-btn--primary {
    color: #fff;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 52%, #a855f7 100%);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.28);
}

@media (max-width: 480px) {
    .pa-status-card {
        padding: 2rem 1.25rem;
    }

    .pa-status-btn {
        width: 100%;
    }
}
