<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Доступ заблокирован</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }
        .container {
            text-align: center;
            padding: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
            max-width: 500px;
            margin: 20px;
        }
        .icon { font-size: 80px; margin-bottom: 20px; }
        h1 { font-size: 28px; margin-bottom: 15px; color: #ff6b6b; }
        p { font-size: 18px; color: #ccc; line-height: 1.6; margin-bottom: 20px; }
        .site-name {
            background: rgba(255,107,107,0.2);
            padding: 10px 20px;
            border-radius: 10px;
            font-size: 16px;
            color: #ff6b6b;
            display: inline-block;
            margin-top: 10px;
        }
        .footer { margin-top: 30px; font-size: 14px; color: #888; }
    </style>
</head>
<body>
    <div class="container">
        <div class="icon">🚫</div>
        <h1>Доступ заблокирован</h1>
        <p>Этот сайт заблокирован администратором сети.</p>
        <div class="site-name">Instagram</div>
        <div class="footer">Если вы считаете это ошибкой, обратитесь к администратору.</div>
    </div>
</body>
</html>