
    <!DOCTYPE html>
    <html lang='de'>
    <head>
        <meta charset='UTF-8'>
        <meta name='viewport' content='width=device-width, initial-scale=1.0'>
        <title>Zugriff eingeschränkt</title>
        <style>
            body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background-color: #f4f7f9; color: #333; display: flex; align-items: center; justify-content: center; height: 100vh; margin: 0; }
            .container { text-align: center; background: white; padding: 3rem; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); max-width: 400px; width: 90%; }
            .icon { font-size: 50px; margin-bottom: 20px; }
            h1 { font-size: 24px; margin: 0 0 10px; color: #2c3e50; }
            p { color: #7f8c8d; line-height: 1.6; margin-bottom: 25px; }
            .btn { text-decoration: none; display: inline-block; background: #3498db; color: white; padding: 10px 25px; border-radius: 6px; font-weight: 500; transition: background 0.2s; cursor: pointer; border: none; }
            .btn:hover { background: #2980b9; }
            .footer { margin-top: 30px; font-size: 12px; color: #bdc3c7; }
        </style>
    </head>
    <body>
        <div class='container'>
            <div class='icon'>🔒</div>
            <h1>Zugriff verweigert</h1>
            <button onclick="window.location.href='https://techtips.guidicel.li'" class='btn'>Move away</button>
        </div>
    </body>
    </html>
    