<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<title>Access denied</title>
<style>
html, body {
    height: 100%;
    margin: 0;
    background: #0f172a;
    color: #ffffff;
    font-family: Arial, sans-serif;
}
.wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.card {
    padding: 36px 50px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    box-shadow: 0 18px 60px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.08);
}
h1 {
    font-size: 52px;
    margin: 18px 0 10px 0;
}
p {
    font-size: 22px;
    margin: 6px 0;
}
.ip {
    font-size: 30px;
    font-weight: 700;
    color: #38bdf8;
}
.icon {
    font-size: 80px;
}
.small {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 18px;
}
.button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background: #22c55e;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.2s ease;
}
.button:hover {
    background: #16a34a;
}
</style>
</head>
<body>
<div class='wrapper'>
  <div class='card'>
    <div class='icon'>🚫</div>
    <h1>Доступ запрещён</h1>
    <p>Ваш IP адрес:</p>
    <p class='ip'>216.73.216.86</p>
    <p class='small'>Для подключения используйте RDSK.</p>
    <a class='button' 
       href='https://github.com/rustdesk/rustdesk/releases/download/1.4.5/rustdesk-1.4.5-x86_64.exe'>
       Скачать RDSK
    </a>
  </div>
</div>
</body>
</html>