        body {
            background-color: var(--bg-body);
            min-height: 100vh;
        }

        .status-container {
            width: 100%;
            max-width: 680px;
            margin: 56px auto;
            padding: 0 24px;
        }

        .status-container.animate-in {
            animation: statusFadeUp 0.5s var(--ease-apple) both;
        }

        @keyframes statusFadeUp {
            from { opacity: 0; transform: translateY(12px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== 头部：大图标 + 整体状态 ===== */
        .status-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .status-hero-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

        .status-hero-icon.operational {
            background: linear-gradient(135deg, #34C759 0%, #30B350 100%);
            box-shadow: 0 8px 24px rgba(52, 199, 89, 0.35);
        }

        .status-hero-icon.degraded {
            background: linear-gradient(135deg, #FF9F0A 0%, #FF9500 100%);
            box-shadow: 0 8px 24px rgba(255, 149, 0, 0.35);
        }

        .status-hero-icon.outage {
            background: linear-gradient(135deg, #FF453A 0%, #FF3B30 100%);
            box-shadow: 0 8px 24px rgba(255, 59, 48, 0.35);
        }

        .status-header h1 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .status-subtitle {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* ===== 组件卡片 ===== */
        .services-card {
            background: var(--bg-card);
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            overflow: hidden;
        }

        .services-header {
            padding: 16px 24px;
            border-bottom: 1px solid var(--border-light);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--text-tertiary);
        }

        .service-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 18px 24px;
            border-bottom: 1px solid var(--border-light);
            transition: background 0.2s;
        }

        .service-item:last-child { border-bottom: none; }
        .service-item:hover { background: var(--bg-input); }

        /* 左侧状态点 */
        .service-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .service-dot.healthy {
            background: var(--success);
            animation: dotPulse 2s ease-in-out infinite;
        }

        .service-dot.unhealthy {
            background: var(--danger);
            box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.15);
        }

        @keyframes dotPulse {
            0%, 100% { box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.15); }
            50% { box-shadow: 0 0 0 7px rgba(52, 199, 89, 0.05); }
        }

        .service-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
            flex: 1;
            min-width: 0;
        }

        .service-name {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.95rem;
        }

        .service-message {
            font-size: 0.82rem;
            color: var(--text-tertiary);
        }

        /* 右侧状态药丸 */
        .service-pill {
            flex-shrink: 0;
            padding: 4px 12px;
            border-radius: 99px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .service-pill.healthy {
            background: var(--success-light);
            color: var(--success);
        }

        .service-pill.unhealthy {
            background: var(--danger-light);
            color: var(--danger);
        }

        /* ===== 关于卡片 ===== */
        .info-card {
            margin-top: 24px;
            background: var(--bg-card);
            border-radius: 20px;
            padding: 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
        }

        .info-card h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .info-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .info-card .info-version {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--border-light);
            font-size: 0.8rem;
            color: var(--text-tertiary);
        }

        .info-card a {
            color: var(--accent);
            text-decoration: none;
        }

        /* ===== 自动刷新 ===== */
        .refresh-note {
            text-align: center;
            margin: 20px 0 4px;
        }

        .auto-refresh {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--text-tertiary);
            font-size: 0.82rem;
        }

        .auto-refresh svg {
            animation: spin 2.5s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* #app-root 为 flex 列，卡片水平居中 */
        #app-root { align-items: center; }
