        :root {
            --primary: #FE8516;
            --primary-dark: #FF5A00;
            --secondary: #1A1A2E;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --border: #e2e8f0;
            --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
            --container: 1200px;
            --success: #16a34a;
            --warning: #f59e0b;
            --danger: #dc2626;
            --radius: 18px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
        }
        
 /* --- HEADER --- */
        header {
            background-color: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            height: 80px;
            display: flex;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            width: 100%;
            min-height: 80px;
        }
        .container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        .hero {
            background:
                linear-gradient(135deg, rgba(26, 26, 46, .97), rgba(26, 26, 46, .9)),
                radial-gradient(circle at top right, rgba(254, 133, 22, .18), transparent 35%);
            color: var(--white);
            padding: 80px 0 60px;
        }

        .hero .tag {
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 16px;
            display: inline-block;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 12px;
        }

        .hero p {
            font-size: 18px;
            color: rgba(255, 255, 255, .8);
            max-width: 700px;
        }

        .main {
            padding: 50px 0 70px;
        }

        .status-overview {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 28px;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .status-left h2 {
            font-size: 28px;
            color: var(--secondary);
            margin-bottom: 8px;
        }

        .status-left p {
            color: var(--text-light);
        }

        .status-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            border-radius: 999px;
            background: rgba(22, 163, 74, .08);
            color: var(--success);
            font-weight: bold;
            font-size: 15px;
            border: 1px solid rgba(22, 163, 74, .15);
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: currentColor;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .service-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            box-shadow: var(--shadow);
            padding: 22px;
        }

        .service-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .service-card h3 {
            font-size: 20px;
            color: var(--secondary);
        }

        .badge {
            font-size: 13px;
            font-weight: bold;
            padding: 8px 12px;
            border-radius: 999px;
            border: 1px solid transparent;
            white-space: nowrap;
        }

        .badge.ok {
            color: var(--success);
            background: rgba(22, 163, 74, .08);
            border-color: rgba(22, 163, 74, .12);
        }

        .badge.warn {
            color: var(--warning);
            background: rgba(245, 158, 11, .08);
            border-color: rgba(245, 158, 11, .12);
        }

        .badge.off {
            color: var(--danger);
            background: rgba(220, 38, 38, .08);
            border-color: rgba(220, 38, 38, .12);
        }

        .service-card p {
            color: var(--text-light);
            margin-bottom: 14px;
            line-height: 1.55;
        }

        .meta {
            font-size: 14px;
            color: var(--text-dark);
            background: #f9fafb;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 12px 14px;
        }

        .updates {
            margin-top: 28px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 28px;
        }

        .updates h2 {
            color: var(--secondary);
            margin-bottom: 18px;
            font-size: 26px;
        }

        .update-item {
            padding: 16px 0;
            border-top: 1px solid var(--border);
        }

        .update-item:first-of-type {
            border-top: 0;
            padding-top: 0;
        }

        .update-item strong {
            display: block;
            color: var(--secondary);
            margin-bottom: 6px;
        }

        .update-item span {
            display: inline-block;
            color: var(--primary-dark);
            font-size: 13px;
            font-weight: bold;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: .4px;
        }

        .footer {
            background: var(--secondary);
            color: rgba(255, 255, 255, .75);
            text-align: center;
            padding: 28px 0;
            font-size: 14px;
        }

        @media (max-width: 980px) {
            .grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 36px;
            }
        }