
    <!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</title>
        <style>
            body {
                background-color: #eef2f5;
                font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
                display: flex;
                align-items: center;
                justify-content: center;
                height: 100vh;
                margin: 0;
                color: #333;
            }
            .card {
                background: white;
                padding: 50px 40px;
                border-radius: 20px;
                box-shadow: 0 10px 40px rgba(0,0,0,0.1);
                text-align: center;
                max-width: 480px;
                width: 90%;
                border-top: 6px solid #ff4757;
            }
            .icon-svg {
                width: 100px;
                height: 100px;
                margin-bottom: 20px;
                fill: #ff4757;
            }
            h1 {
                font-size: 28px;
                margin: 0 0 15px 0;
                color: #2d3436;
                font-weight: 800;
            }
            p {
                font-size: 18px;
                line-height: 1.6;
                color: #636e72;
                margin-bottom: 30px;
            }
            .highlight {
                background-color: #ffeaa7;
                padding: 2px 6px;
                border-radius: 4px;
                color: #d63031;
                font-weight: bold;
            }
            .btn {
                display: inline-block;
                background-color: #2d3436;
                color: white;
                text-decoration: none;
                padding: 12px 25px;
                border-radius: 50px;
                font-weight: 600;
                transition: transform 0.2s, background-color 0.2s;
            }
            .btn:hover {
                background-color: #000;
                transform: translateY(-2px);
            }
        </style>
    </head>
    <body>
        <div class="card">
            <svg class="icon-svg" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
                <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/>
            </svg>
            
            <h1>Hola, hola!</h1>
            <p>Dostęp do zdjęć jest w tym momencie <br><strong>zablokowany</strong>.</p>
            <p>Udostępniam ten serwer zazwyczaj tylko na <span class="highlight">6 godzin</span>.</p>
            
            <a href="mailto:aberracja@proton.me?subject=Włącz%20zdjęcia&body=Cześć,%20proszę%20o%20włączenie%20dostępu%20do%20zdjęć." class="btn">
                Napisz, żeby włączyć 🚀
            </a>
        </div>
    </body>
    </html>
    