
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>VIP Distronj - Coming Soon</title>

    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: white;
            text-align: center;
            padding: 20px;
        }

        .box {
            max-width: 700px;
            padding: 60px 40px;
            border-radius: 20px;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
        }

        h1 {
            font-size: 54px;
            margin-bottom: 20px;
        }

        p {
            font-size: 18px;
            color: #cbd5e1;
            line-height: 1.7;
        }

        .email {
            margin-top: 30px;
            font-size: 16px;
            color: #93c5fd;
        }
    </style>
</head>
<body>
    <div class="box">
        <h1>Coming Soon</h1>

        <p>
            VIP Distronj is launching soon.<br>
            We are working on something modern and powerful.
        </p>

    </div>
</body>
</html>