

<!DOCTYPE html>
<html lang="tr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Welcome</title>
    <style>
        :root {
            --bg-color: #0a0a0a;
            --card-bg: #121212;
            --text-main: #ffffff;
            --text-muted: #a1a1aa;
            --accent: #ffffff;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Inter', system-ui, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-main);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .container {
            width: 90%;
            max-width: 450px;
            background: var(--card-bg);
            padding: 50px;
            border-radius: 24px;
            border: 1px solid #262626;
            text-align: center;
        }

        .icon-circle {
            width: 60px;
            height: 60px;
            background: #1f1f1f;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 25px;
        }

        h1 { font-size: 1.8rem; margin-bottom: 15px; letter-spacing: -0.5px; }
        p { color: var(--text-muted); font-size: 1rem; margin-bottom: 40px; line-height: 1.6; }

        .btn-group { display: flex; flex-direction: column; gap: 10px; }

        .btn {
            padding: 14px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-primary { background: var(--text-main); color: #000; }
        .btn-primary:hover { opacity: 0.9; }
        
        .btn-ghost { color: var(--text-muted); border: 1px solid #262626; }
        .btn-ghost:hover { color: var(--text-main); border-color: #404040; }
    </style>
</head>
<body>

    <div class="container">
        <div class="icon-circle">◈</div>
        <h1>Welcome</h1>
        <p>The official address will be live soon...</p>
        


</body>
</html>