/* Extracted inline styles from /status.html (H5) */
body {
            background: #0B0D12;
            color: #ffffff;
            font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }
        body::before {
            content: "";
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background:
                radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(29, 78, 216, 0.08) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 700px;
            margin: 0 auto;
            padding: 0 1.5rem;
            position: relative;
            z-index: 1;
        }

        .hero {
            padding-top: 6rem;
            padding-bottom: 2rem;
            text-align: center;
        }

        .gradient-text {
            background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #1d4ed8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .status-banner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin-bottom: 2rem;
        }

        .status-banner.operational {
            background: rgba(29, 78, 216, 0.1);
            border: 1px solid rgba(29, 78, 216, 0.3);
            color: #60a5fa;
        }

        .status-banner i {
            font-size: 1.25rem;
        }

        .card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .card h2 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .card h2 i {
            color: #3b82f6;
        }

        .service-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .service-item:last-child {
            border-bottom: none;
        }

        .service-name {
            color: #d1d5db;
        }

        .service-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .service-status.operational {
            color: #60a5fa;
        }

        .service-status .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #1d4ed8;
        }

        .muted {
            color: #9ca3af;
        }

        .contact-section {
            text-align: center;
            padding: 1.5rem;
        }

        .contact-section a {
            color: #60a5fa;
            text-decoration: none;
        }

        .contact-section a:hover {
            color: #93c5fd;
        }

        .mini-nav {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .mini-nav a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .mini-nav a:hover {
            color: #ffffff;
        }

        .update-time {
            text-align: center;
            color: #6b7280;
            font-size: 0.85rem;
            margin-top: 1rem;
        }
