
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Network</title>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap" rel="stylesheet">
    <style>
        body { 
            font-family: "Inter", sans-serif; 
            margin: 0;
            padding: 0;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #e2e8f0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .container {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .home-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
            opacity: 0.3;
            filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
            animation: pulse 3s ease-in-out infinite;
        }
        
        .logo {
            width: 200px;
            height: auto;
            margin: 0 auto 2rem;
            opacity: 0.6;
            filter: brightness(0) invert(1);
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.05); opacity: 0.5; }
        }
        
        .title {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 1rem;
            letter-spacing: 0.1em;
            color: #f1f5f9;
        }
        
        .subtitle {
            font-size: 1rem;
            font-weight: 300;
            color: #94a3b8;
            margin-bottom: 3rem;
            letter-spacing: 0.05em;
        }
        
        .status {
            font-size: 0.875rem;
            color: #64748b;
            font-weight: 400;
            letter-spacing: 0.1em;
        }
        
        .status-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            margin-right: 8px;
            animation: blink 2s ease-in-out infinite;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .background-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
            z-index: 1;
        }
    </style>
</head>
<body>
    <div class="background-pattern"></div>
    
    <div class="container">                
        <div class="status">
            <span class="status-dot"></span>
            NETWORK ONLINE
        </div>
    </div>
</body>
</html>