<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<title>Доступ запрещён</title>
<style>
html, body {
    height: 100%;
    margin: 0;
    background: radial-gradient(circle at top, #1e293b 0%, #0f172a 60%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #ffffff;
}
.wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    padding: 50px 70px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.08);
    animation: fadeInUp 0.8s ease-out;
}
.icon {
    font-size: 80px;
    margin-bottom: 20px;
}
h1 {
    font-size: 56px;
    margin: 10px 0 15px 0;
    font-weight: 700;
}
.subtitle {
    font-size: 22px;
    opacity: 0.85;
}
.ip {
    font-size: 34px;
    font-weight: 700;
    color: #38bdf8;
    margin-top: 15px;
    letter-spacing: 1px;
}
.footer {
    font-size: 14px;
    margin-top: 25px;
    opacity: 0.6;
}
.gateway {
    margin-top: 35px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.4;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
</style>
</head>
<body>
<div class='wrapper'>
  <div class='card'>
    <div class='icon'>🚫</div>
    <h1>Доступ запрещён</h1>
    <div class='subtitle'>Ваш IP адрес:</div>
    <div class='ip'>216.73.216.86</div>
    <div class='footer'>Если вы считаете, что это ошибка — обратитесь к администратору.</div>
    <div class='gateway'>Security Gateway</div>
  </div>
</div>
</body>
</html>