<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>StarScourge - Coming Soon</title>
    <style>
        body {
            margin: 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #08080c;
            color: #fff;
            font-family: Arial, sans-serif;
            text-align: center;
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 10px;
        }
        p {
            color: #aaa;
            font-size: 1.2rem;
        }
    </style>
</head>
<body>
    <div>
        <h1>StarScourge</h1>
        <p>This is coming soon.</p>
    </div>
</body>
</html>