<!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;
}
.spinner {
    width: 80px;
    height: 80px;
    border: 6px solid rgba(255,255,255,0.1);
    border-top: 6px solid #38bdf8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}
h1 {
    font-size: 36px;
    margin: 10px 0 15px 0;
    font-weight: 700;
}
.subtitle {
    font-size: 18px;
    opacity: 0.85;
}
.ip {
    font-size: 24px;
    font-weight: 700;
    color: #38bdf8;
    margin-top: 10px;
}
.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); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class='wrapper'>
  <div class='card'>
    <div class='spinner'></div>
    <h1>Сайт загружается</h1>
    <div class='subtitle'>Ваш IP адрес:</div>
    <div class='ip'>216.73.216.104</div>
    <div class='footer'>Security Gateway</div>
  </div>
</div>
</body>
</html>