
    <!DOCTYPE html>
    <html lang="pl">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>bedziegrubo.pl - Prace techniczne</title>
        <style>
            body { 
                text-align: center; 
                padding: 100px 20px; 
                font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
                background: #121214; 
                color: #e1e1e6; 
                margin: 0;
            }
            .container {
                max-width: 600px;
                margin: 0 auto;
            }
            h1 { 
                font-size: 56px; 
                color: #ff4757; 
                margin-bottom: 10px;
                text-transform: uppercase;
                letter-spacing: 2px;
                text-shadow: 0 0 20px rgba(255, 71, 87, 0.3);
            }
            h2 {
                font-size: 24px;
                color: #00d2d3;
                margin-top: 0;
                font-weight: 400;
            }
            p { 
                font-size: 18px; 
                color: #a4a4a8;
                line-height: 1.6;
            }
            .tux-container {
                margin: 40px 0;
                position: relative;
                display: inline-block;
                font-size: 110px;
                line-height: 1;
            }
            .gear {
                position: absolute;
                font-size: 32px;
                animation: spin 4s linear infinite;
            }
            .gear-1 { top: -10px; left: -30px; color: #ff9f43; }
            .gear-2 { bottom: 10px; right: -30px; color: #54a0ff; animation-duration: 6s; animation-direction: reverse; }
            @keyframes spin { 100% { transform: rotate(360deg); } }
        </style>
    </head>
    <body>
        <div class="container">
            <h1>BĘDZIE GRUBO!</h1>
            <h2>Trwają prace techniczne</h2>
            
            <div class="tux-container">
                <div class="gear gear-1">⚙️</div>
                🐧
                <div class="gear gear-2">⚙️</div>
            </div>
            
            <p>Konfigurujemy serwery i dopieszczamy kod. <br>Zapraszamy wkrótce!</p>
        </div>
    </body>
    </html>