<!DOCTYPE html>
<html lang="pl">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Dostęp zablokowany | Cobonaut Git</title>
    <link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap" rel="stylesheet">
    <style>
        :root {
            --bg: #030712;
            --card-bg: #090d16;
            --border: #1f2937;
            --text-primary: #f9fafb;
            --text-secondary: #9ca3af;
            --primary: #8b5cf6;
            --primary-hover: #7c3aed;
        }
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg);
            color: var(--text-primary);
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 24px;
            box-sizing: border-box;
            overflow: hidden;
        }
        .container {
            max-width: 440px;
            width: 100%;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 40px 32px;
            text-align: center;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            position: relative;
            z-index: 10;
        }
        .logo {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #a78bfa, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }
        .icon {
            font-size: 48px;
            margin-bottom: 16px;
        }
        h1 {
            font-size: 20px;
            font-weight: 800;
            margin: 0 0 12px 0;
            letter-spacing: -0.025em;
        }
        p {
            font-size: 13px;
            line-height: 1.6;
            color: var(--text-secondary);
            margin: 0 0 28px 0;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 12px 24px;
            background-color: var(--primary);
            color: #ffffff;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
            box-sizing: border-box;
        }
        .btn:hover {
            background-color: var(--primary-hover);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3);
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="logo">cobonaut</div>
        <div class="icon">🔒</div>
        <h1>Bezpośredni dostęp zablokowany</h1>
        <p>Interfejs graficzny serwera Git jest niedostępny ze względów bezpieczeństwa.<br><br>Zaloguj się na głównej domenie <strong>cobonaut.com</strong> i zarządzaj swoimi projektami oraz kodem bezpośrednio przez <strong>Workspace</strong>.</p>
        <a href="https://cobonaut.com" class="btn">Przejdź do cobonaut.com</a>
    </div>
</body>
</html>