<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CDN Service Status</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: "Courier New", monospace;
            background: #0a0e27;
            color: #00ff00;
            padding: 40px 20px;
            min-height: 100vh;
        }
        .terminal {
            max-width: 800px;
            margin: 0 auto;
            background: #1a1f35;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 0 30px rgba(0,255,0,0.1);
        }
        h1 {
            color: #00ff00;
            margin-bottom: 20px;
            font-size: 24px;
        }
        .status-line {
            margin: 10px 0;
            padding-left: 20px;
        }
        .ok { color: #00ff00; }
        .info { color: #00aaff; }
        .footer {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #00ff00;
            opacity: 0.7;
            font-size: 12px;
        }
        .blink {
            animation: blink 1s infinite;
        }
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
    </style>
</head>
<body>
    <div class="terminal">
        <h1>CDN Service Monitor</h1>
        <div class="status-line ok">● CDN Core: <strong>ONLINE</strong></div>
        <div class="status-line ok">● Edge Nodes: <strong>47/47 ACTIVE</strong></div>
        <div class="status-line ok">● Cache Hit Ratio: <strong>94.3%</strong></div>
        <div class="status-line info">● Total Requests: <strong>1,247,853</strong></div>
        <div class="status-line info">● Bandwidth: <strong>2.4 Gbps</strong></div>
        <div class="status-line ok">● Uptime: <strong>99.97%</strong></div>
        <div class="footer">
            ITGrom CDN v2.1.4 | All systems operational <span class="blink">_</span>
        </div>
    </div>
</body>
</html>