<!DOCTYPE html>
<html lang="ru">
<head>
 <meta charset="UTF-8">
 <title>LimonRP - Loading</title>
 <style>
 body {
 margin: 0;
 padding: 0;
 font-family: 'Segoe UI', sans-serif;
 background: url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1600&q=80") no-repeat center center fixed;
 background-size: cover;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 height: 100vh;
 color: #fff;
 text-align: center;
 text-shadow: 0 0 10px rgba(0,0,0,0.7);
 }

 .logo {
 font-size: 72px;
 font-weight: bold;
 margin-bottom: 20px;
 }

 .subtitle {
 font-size: 26px;
 margin-bottom: 40px;
 }

 .loader {
 width: 120px;
 height: 120px;
 border: 12px solid rgba(255,255,255,0.2);
 border-top: 12px solid #fff;
 border-radius: 50%;
 animation: spin 2s linear infinite;
 margin-bottom: 40px;
 }

 @keyframes spin {
 0% { transform: rotate(0deg); }
 100% { transform: rotate(360deg); }
 }

 .promo {
 font-size: 32px;
 font-weight: bold;
 background: rgba(0,0,0,0.5);
 padding: 15px 25px;
 border-radius: 12px;
 margin-top: 20px;
 }
 </style>
$AJAX_JS$
</head>
<body>
 <div class="logo">🍋 LimonRP</div>
 <div class="subtitle">Добро пожаловать на сервер!</div>
 <div class="loader"></div>
 <div class="promo">💸 2000RUB /limonrp ВВОДИ СКОРЕЕ!</div>
</body>
</html>