<!DOCTYPE html>
<html lang="pl">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>W przygotowaniu</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400&display=swap" rel="stylesheet">
    <style>
        :root {
            --bg-color: #0b0b0f;
            --text-color: #ffffff;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background: radial-gradient(circle at center, #16161f 0%, var(--bg-color) 100%);
            color: var(--text-color);
            font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            overflow: hidden;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        .container {
            text-align: center;
        }

        h1 {
            font-weight: 300;
            font-size: 1.8rem;
            animation: pulse 3s ease-in-out infinite;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        }

        @keyframes pulse {
            0% {
                opacity: 0.3;
                transform: scale(0.98);
                text-shadow: 0 0 5px rgba(255, 255, 255, 0.05);
            }
            50% {
                opacity: 1;
                transform: scale(1);
                text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
            }
            100% {
                opacity: 0.3;
                transform: scale(0.98);
                text-shadow: 0 0 5px rgba(255, 255, 255, 0.05);
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>w przygotowaniu</h1>
    </div>
</body>
</html>
