Не плохие motd окна) Работают через WEB

DENZEL519

Работаю с AI !
Сообщения
417
Реакции
198
Может кому пригодится)

Пощупать можно тут, просто вставить код который вам понравился, и нажать RUN

Вариант 1:
<!DOCTYPE html>
<html>
<head>
    <title>■■■■■ CS СЕРВЕР ■■■■■</title>
    <meta charset="UTF-8">
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Rajdhani:wght@500;700&display=swap');
 
        :root {
            --cs-orange: #ff6a00;
            --cs-orange-dark: #cc5500;
            --cs-orange-glow: rgba(255, 106, 0, 0.7);
            --cs-metal: linear-gradient(135deg, #333 0%, #555 50%, #222 100%);
        }
 
        body {
            background:
                radial-gradient(circle at 20% 30%, rgba(255, 106, 0, 0.15) 0%, transparent 25%),
                radial-gradient(circle at 80% 70%, rgba(0, 150, 255, 0.1) 0%, transparent 25%),
                linear-gradient(to bottom, #0a0a0a 0%, #111 100%);
            color: #e0e0e0;
            font-family: 'Rajdhani', sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            min-height: 100vh;
        }
 
        .container {
            width: 900px;
            margin: 30px auto;
            padding: 30px;
 
            border: 1px solid var(--cs-orange);
            border-radius: 15px;
            box-shadow:
                0 0 30px var(--cs-orange-glow),
                inset 0 0 20px rgba(0, 0, 0, 0.7);
            position: relative;
            overflow: hidden;
            animation: fadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        }
 
        .container::before {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg,
                transparent 48%, var(--cs-orange) 49%,
                var(--cs-orange) 51%, transparent 52%);
            background-size: 10px 10px;
            opacity: 0.15;
            pointer-events: none;
            animation: borderScan 4s linear infinite;
            z-index: -1;
        }
 
        @keyframes fadeIn {
            from { opacity: 0; transform: perspective(1000px) rotateX(-10deg) translateY(50px); }
            to { opacity: 1; transform: perspective(1000px) rotateX(0) translateY(0); }
        }
 
        @keyframes borderScan {
            0% { background-position: 0 0; }
            100% { background-position: 20px 20px; }
        }
 
        h1 {
            color: transparent;
            text-align: center;
            font-size: 3em;
            font-family: 'Orbitron', sans-serif;
            margin: 0 0 20px 0;
            letter-spacing: 3px;
            text-transform: uppercase;
            background: linear-gradient(to right, #ff8c00, #ffbb00);
            -webkit-background-clip: text;
            background-clip: text;
            text-shadow:
                0 0 10px rgba(255, 140, 0, 0.3),
                0 0 20px rgba(255, 187, 0, 0.2);
            position: relative;
            padding-bottom: 15px;
        }
 
        h1::after {
            position: absolute;
            bottom: 0;
            left: 25%;
            width: 50%;
            height: 2px;
            background: linear-gradient(to right,
                transparent, var(--cs-orange), transparent);
            box-shadow: 0 0 10px var(--cs-orange);
        }
 
        h2 {
            color: var(--cs-orange);
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8em;
            letter-spacing: 1px;
            margin: 25px 0 15px 0;
            position: relative;
            display: inline-block;
            padding-right: 30px;
            text-shadow: 0 0 5px var(--cs-orange-glow);
        }
 
        h2::after {
            position: absolute;
            right: 0;
            bottom: 5px;
            width: 20px;
            height: 3px;
            background: var(--cs-orange);
            box-shadow: 0 0 5px var(--cs-orange);
        }
 
        .info-block {
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 25px;
            border-left: 4px solid var(--cs-orange);
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
        }
 
        .info-block:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
        }
 
        .info-block::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                linear-gradient(90deg, rgba(255, 106, 0, 0.1) 0%, transparent 100%);
            pointer-events: none;
        }
 
        .info-row {
            display: flex;
            margin: 12px 0;
            align-items: center;
            font-size: 1.1em;
        }
 
        .info-icon {
            color: var(--cs-orange);
            margin-right: 15px;
            font-size: 1.3em;
            min-width: 25px;
            text-align: center;
            text-shadow: 0 0 5px var(--cs-orange-glow);
        }
 
        .rules-list {
            list-style-type: none;
            padding: 0;
        }
 
        .rules-list li {
            margin: 15px 0;
            padding-left: 30px;
            position: relative;
            font-size: 1.1em;
        }
 
        .rules-list li::before {
            content: "■";
            position: absolute;
            left: 0;
            color: var(--cs-orange);
            font-size: 0.8em;
            top: 3px;
            text-shadow: 0 0 5px var(--cs-orange-glow);
        }
 
        .btn-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
 
        .btn {
            display: inline-flex;
            align-items: center;
            padding: 12px 25px;
            background: var(--cs-metal);
            color: white;
            border: 1px solid var(--cs-orange);
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            font-family: 'Rajdhani', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            box-shadow:
                0 0 10px rgba(0, 0, 0, 0.5),
                inset 0 0 5px rgba(255, 255, 255, 0.1);
        }
 
        .btn::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                transparent 45%,
                rgba(255, 106, 0, 0.3) 50%,
                transparent 55%
            );
            transform: rotate(30deg);
            animation: btnShine 3s infinite;
            opacity: 0;
        }
 
        @keyframes btnShine {
            0% { transform: rotate(30deg) translate(-30%, -30%); opacity: 0; }
            20% { opacity: 1; }
            100% { transform: rotate(30deg) translate(30%, 30%); opacity: 0; }
        }
 
        .btn:hover {
            background: linear-gradient(to bottom, #444 0%, #666 100%);
            border-color: #ff8c00;
            transform: translateY(-3px);
            box-shadow:
                0 5px 15px var(--cs-orange-glow),
                inset 0 0 10px rgba(255, 255, 255, 0.2);
        }
 
        .btn:hover::before {
            animation: btnShine 1.5s infinite;
        }
 
        .btn i {
            margin-right: 10px;
            font-size: 1.2em;
        }
 
        .footer {
            text-align: center;
            margin-top: 40px;
            font-size: 0.9em;
            color: #777;
            position: relative;
        }
 
        .footer::before {
            content: "";
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 50%;
            height: 1px;
            background: linear-gradient(to right,
                transparent, var(--cs-orange), transparent);
            box-shadow: 0 0 5px var(--cs-orange);
        }
 
        .social-links {
            margin-top: 15px;
        }
 
        .social-links a {
            color: #aaa;
            margin: 0 12px;
            font-size: 1.3em;
            transition: all 0.3s;
            display: inline-block;
        }
 
        .social-links a:hover {
            color: var(--cs-orange);
            transform: translateY(-3px) scale(1.2);
            text-shadow: 0 0 10px var(--cs-orange-glow);
        }
 
        .pulse {
            animation: pulse 2s infinite alternate;
        }
 
        @keyframes pulse {
            from { opacity: 0.8; }
            to { opacity: 1; text-shadow: 0 0 15px var(--cs-orange-glow); }
        }
    </style>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
    <div class="container">
        <h1 class="pulse">Counter-Strike: Source</h1>
 
        <div class="info-block">
            <h2><i class="fas fa-server"></i> Информация о сервере</h2>
            <div class="info-row">
                <span class="info-icon"><i class="fas fa-network-wired"></i></span>
                <span><strong>IP:</strong> Какой у вас?</span>
            </div>
            <div class="info-row">
                <span class="info-icon"><i class="fas fa-chess-knight"></i></span>
                <span><strong>Режим:</strong> Какой у вас?</span>
            </div>
            <div class="info-row">
                <span class="info-icon"><i class="fas fa-shield-alt"></i></span>
                <span><strong>Защита:</strong> Какая у вас?</span>
            </div>
        </div>
 
        <div class="info-block">
            <h2><i class="fas fa-gavel"></i> Правила сервера</h2>
            <ul class="rules-list">
                <li>Читы = <strong>Бан</strong></li>
                <li>Оскорбления = <strong>мут</strong></li>
                <li>Уважайте администрацию и игроков</li>
                <li>Запрещён спам-микро = <strong>Мут</strong></li>
            </ul>
        </div>
 
        <div class="btn-container">
            <a href="https://discord.gg/cs-server" class="btn" target="_blank">
                <i class="fab fa-discord"></i> Discord
            </a>
            <a href="https://steamcommunity.com/groups/" class="btn" target="_blank">
                <i class="fab fa-steam"></i> Группа Steam
            </a>
            <a href="https://server-rules.com" class="btn" target="_blank">
                <i class="fas fa-book"></i> Полные правила
            </a>
        </div>
 
        <div class="footer">
            <p>© 2025 Премиум CS Сервер | Работаем 24/7</p>
            <div class="social-links">
                <a href="https://vk.com/" target="_blank"><i class="fab fa-vk"></i></a>
                <a href="https://youtube.com/" target="_blank"><i class="fab fa-youtube"></i></a>
            </div>
        </div>
    </div>
</body>
</html>

Screenshot.png


Вариант 2:
<!DOCTYPE html>
<html>
<head>
<title>■■■■■ CS СЕРВЕР ■■■■■</title>
  <meta charset="UTF-8">
    <style>
    @import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@600&display=swap');

    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      width: 100%;
      background: linear-gradient(135deg, #1a1a1a, #101010);
      font-family: 'Titillium Web', sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .scene {
      perspective: 1200px;
      width: 100%;
      max-width: 800px;
      padding: 20px;
    }

    .card {
      background: linear-gradient(160deg, #2b2b2b, #1a1a1a);
      border-radius: 20px;
      border: 1px solid #ffd70055;
      box-shadow: 0 0 40px rgba(255, 215, 0, 0.08);
      padding: 40px;
      color: #f0f0f0;
      text-align: center;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      transform-style: preserve-3d;
      position: relative;
      animation: fadeIn 1.2s ease-out;
    }

    .card::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 60%);
      transform: rotate(25deg);
      z-index: 0;
      pointer-events: none;
    }

    h1 {
      font-size: 36px;
      color: #ffd700;
      text-shadow: 0 0 8px #ffd70077;
      margin-bottom: 20px;
      z-index: 1;
      position: relative;
    }

    p {
      font-size: 18px;
      color: #dddddd;
      margin-bottom: 20px;
      z-index: 1;
      position: relative;
    }

    ul {
      text-align: left;
      margin: 20px auto;
      max-width: 500px;
      padding-left: 20px;
      z-index: 1;
      position: relative;
    }

    li {
      margin-bottom: 12px;
      color: #eeeeee;
      position: relative;
    }

    li::before {
      content: "☑";
      color: #ffd700;
      margin-right: 8px;
    }

    .btn {
      background: #ffd700;
      color: #111;
      padding: 12px 28px;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
      transition: 0.3s ease-in-out;
      z-index: 1;
      position: relative;
    }

    .btn:hover {
      background: #fff;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }

    a {
      color: #ffd700;
      text-decoration: none;
      display: inline-block;
      margin-top: 15px;
      font-size: 14px;
      transition: 0.2s;
    }

    a:hover {
      text-decoration: underline;
    }

    .footer {
      margin-top: 30px;
      font-size: 12px;
      color: #888;
      z-index: 1;
      position: relative;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: scale(0.97);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }
  </style>
</head>
<body>
  <div class="scene">
    <div class="card">
      <h1>Counter-Strike: Source</h1>
      <p>Это твой сервер. Это твои правила. Это твоя победа.</p>

      <h3>🚫 Правила поведения:</h3>
      <ul>
        <li>Никаких читов и багов</li>
        <li>Уважай игроков и админов</li>
        <li>Не спамь и не флейми</li>
        <li>Играем командно и честно</li>
      </ul>

      <button class="btn" onclick="window.open('https://ваш-сайт.ru', '_blank')">🌐 Перейти на сайт</button><br>
      <a href="https://discord.gg/yourinvite" target="_blank">💬 Присоединяйся в Discord</a>

      <div class="footer">© 2025 | Сервер CS:S | Мы — Лучшие</div>
    </div>
  </div>
</body>
</html>

Screenshot2.png

Версия 3:
<!DOCTYPE html>
<html>
<head>
  <title>■■■■■ CS СЕРВЕР ■■■■■</title>
  <meta charset="UTF-8">
  <style>
    @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

    * {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      background: radial-gradient(circle at center, #0a0a0a 0%, #050505 100%);
      font-family: 'Orbitron', sans-serif;
      overflow: hidden;
    }

    body::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 50px 50px;
      z-index: 0;
      pointer-events: none;
    }

    .container {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      perspective: 1000px;
    }

    .hud-panel {
      background: rgba(30, 30, 30, 0.85);
      border: 2px solid #ffd70033;
      box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
      border-radius: 16px;
      padding: 40px;
      width: 90%;
      max-width: 960px;
      transform-style: preserve-3d;
      transition: transform 0.3s ease;
      position: relative;
    }

    .hud-panel:hover {
      transform: rotateY(2deg) rotateX(2deg);
    }

    .hud-panel::after {
      content: "";
      position: absolute;
      top: -10px;
      right: -10px;
      bottom: -10px;
      left: -10px;
      border: 2px dashed rgba(255, 215, 0, 0.08);
      border-radius: 20px;
      pointer-events: none;
    }

    h1 {
      color: #ffd700;
      font-size: 40px;
      margin-bottom: 10px;
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }

    p {
      color: #ccc;
      font-size: 18px;
      margin-bottom: 20px;
    }

    .rules {
      text-align: left;
      max-width: 700px;
      margin: 0 auto 30px;
      padding-left: 20px;
      color: #ddd;
    }

    .rules li {
      margin-bottom: 12px;
    }

    .rules li::before {
      content: "🟡";
      margin-right: 10px;
      color: #ffd700;
    }

    .btn {
      background: linear-gradient(145deg, #ffd700, #e6c100);
      color: #111;
      padding: 14px 32px;
      font-size: 16px;
      border: none;
      border-radius: 12px;
      box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn:hover {
      transform: scale(1.05);
      box-shadow: 0 0 35px rgba(255, 215, 0, 0.6);
    }

    .links {
      margin-top: 20px;
      color: #aaa;
      font-size: 14px;
    }

    .links a {
      color: #ffd700;
      text-decoration: none;
      margin: 0 10px;
    }

    .footer {
      margin-top: 30px;
      font-size: 12px;
      color: #666;
    }

    .glow-border {
      position: absolute;
      inset: 0;
      border-radius: 16px;
      box-shadow:
        0 0 10px rgba(255, 215, 0, 0.2),
        0 0 20px rgba(255, 215, 0, 0.2),
        0 0 30px rgba(255, 215, 0, 0.3);
      pointer-events: none;
      z-index: -1;
      animation: glow 4s ease-in-out infinite;
    }

    @keyframes glow {
      0%, 100% {
        box-shadow:
          0 0 10px rgba(255, 215, 0, 0.2),
          0 0 20px rgba(255, 215, 0, 0.2),
          0 0 30px rgba(255, 215, 0, 0.3);
      }
      50% {
        box-shadow:
          0 0 20px rgba(255, 215, 0, 0.35),
          0 0 40px rgba(255, 215, 0, 0.4),
          0 0 60px rgba(255, 215, 0, 0.45);
      }
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="hud-panel">
      <div class="glow-border"></div>
      <h1>Counter-Strike: Source</h1>
      <p>Добро пожаловать на сервер! Настоящий Source начинается здесь.</p>

      <ul class="rules">
        <li>Без читов — только скилл</li>
        <li>Уважай союзников и врагов</li>
        <li>Не злоупотребляй микрофоном</li>
        <li>Выполняй правила — будь профи</li>
      </ul>

      <button class="btn" onclick="window.open('https://your-server.site', '_blank')">🚀 Перейти на сайт</button>

      <div class="links">
        <a href="https://discord.gg/yourserver" target="_blank">💬 Discord</a> |
        <a href="#">🛠 Поддержка</a>
      </div>

      <div class="footer">© 2025 | CS:S Server | Мы — Лучшие</div>
    </div>
  </div>
</body>
</html>

3.png

Версия 4:
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>■■■■■ CS СЕРВЕР ■■■■■</title>
    <style>
        body {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            color: #fff;
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 20px;
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
            border: 2px solid #4cc9f0;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 0 20px rgba(76, 201, 240, 0.5);
        }
        h1 {
            color: #4cc9f0;
            text-align: center;
            text-shadow: 0 0 10px rgba(76, 201, 240, 0.7);
            font-size: 28px;
            margin-bottom: 30px;
        }
        .server-info {
            background: rgba(0, 0, 0, 0.3);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        .rules {
            background: rgba(0, 0, 0, 0.3);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        .highlight {
            color: #f72585;
            font-weight: bold;
        }
        .footer {
            text-align: center;
            margin-top: 20px;
            font-size: 12px;
            color: #a5a5a5;
        }
        .blink {
            animation: blink 1s infinite;
        }
        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>ДОБРО ПОЖАЛОВАТЬ НА СЕРВЕР <span class="highlight">[НАЗВАНИЕ]</span></h1>
 
        <div class="server-info">
            <h2>Информация о сервере:</h2>
            <p>• IP: <span class="highlight">ваш.IP.адрес:порт</span></p>
            <p>• Версия: Counter-Strike 1.6</p>
            <p>• Режим: <span class="highlight">Competitive/Pub/DM</span></p>
        </div>
 
        <div class="rules">
            <h2>Правила сервера:</h2>
            <p>1. Запрещён читерский софт</p>
            <p>2. Не оскорблять других игроков</p>
            <p>3. Не спамить в чат</p>
            <p>4. Уважительное отношение к администрации</p>
            <p class="highlight">Нарушение правил = бан!</p>
        </div>
 
        <div class="footer">
            <p>Приятной игры! | Наш Discord: <span class="highlight">discord.gg/вашассылка</span></p>
            <p class="blink">❤️ Поддержите сервер: donate.вашсайт.ru ❤️</p>
        </div>
    </div>
</body>
</html>

1.png

Версия 5:
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>■■■■■ CS СЕРВЕР ■■■■■</title>
    <style>
        :root {
            --primary: #6C5CE7;
            --secondary: #00CEFF;
            --accent: #FF3E80;
            --dark: #1E1E2E;
            --darker: #161622;
            --light: #F1F1F1;
            --success: #00E676;
        }
 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
 
        body {
            background-color: var(--darker);
            color: var(--light);
            font-family: 'Segoe UI', 'Roboto', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }
 
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
        }
 
        .card {
            background: linear-gradient(145deg, #232339, #1a1a2e);
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            margin-bottom: 2rem;
        }
 
        .header {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            padding: 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
 
        .header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
            opacity: 0.3;
        }
 
        h1 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
 
        .subtitle {
            font-size: 1rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
 
        .content {
            padding: 2rem;
        }
 
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
 
        .info-box {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 1.5rem;
            border-left: 4px solid var(--secondary);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
 
        .info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
 
        .info-box h3 {
            color: var(--secondary);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
 
        .info-box p {
            margin-bottom: 0.5rem;
        }
 
        .highlight {
            color: var(--accent);
            font-weight: 600;
        }
 
        .server-stats {
            display: flex;
            justify-content: space-around;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
 
        .stat-item {
            text-align: center;
            min-width: 120px;
        }
 
        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
 
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }
 
        .rules-list {
            list-style-type: none;
        }
 
        .rules-list li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
        }
 
        .rules-list li:last-child {
            border-bottom: none;
        }
 
        .rule-icon {
            color: var(--accent);
            flex-shrink: 0;
            margin-top: 2px;
        }
 
        .badge {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 0.3rem 0.6rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 0.5rem;
        }
 
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            margin-top: 1rem;
        }
 
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
        }
 
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
 
        .btn-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
 
        .footer {
            text-align: center;
            margin-top: 2rem;
            font-size: 0.9rem;
            opacity: 0.7;
        }
 
        .pulse {
            animation: pulse 2s infinite;
        }
 
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
 
        /* Адаптивность */
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }
 
            .content {
                padding: 1.5rem;
            }
 
            h1 {
                font-size: 1.8rem;
            }
        }
    </style>
</head>
<body>
    <div class="container">
 
            <div class="header">
                <h1>TEST CS SERVER</h1>
                <p class="subtitle">Лучший игровой опыт с современными технологиями</p>
            </div>
 
            <div class="content">
                <div class="server-stats">
                    <div class="stat-item">
                        <div class="stat-value" id="online">62/64</div>
                        <div class="stat-label">Игроков онлайн</div>
                    </div>
                    <div class="stat-item">
                        <div class="stat-value" id="map">de_dust 2</div>
                        <div class="stat-label">Текущая карта</div>
                    </div>
                    <div class="stat-item">
                        <div class="stat-value" id="ping">14ms</div>
                        <div class="stat-label">Средний пинг</div>
                    </div>
                    <div class="stat-item">
                        <div class="stat-value" id="uptime">95.8%</div>
                        <div class="stat-label">Аптайм</div>
                    </div>
                </div>
 
                <div class="grid">
                    <div class="info-box">
                        <h3>📊 Статистика сервера</h3>
                        <p><strong>IP:</strong> <span class="highlight">ip:27015</span></p>
                        <p><strong>Версия:</strong> Counter-Strike: Source</p>
                        <p><strong>Режим:</strong> Public</p>
                        <p><strong>Античит:</strong> Тебя это ебать не должно!</p>
                    </div>
 
                    <div class="info-box">
                        <h3>🏆 Топ игроков</h3>
                        <p>1. <span class="highlight">ProPlayer</span> (2450 ELO)</p>
                        <p>2. <span class="highlight">AimGod</span> (2380 ELO)</p>
                        <p>3. <span class="highlight">Tactician</span> (2310 ELO)</p>
                        <p>4. <span class="highlight">ClutchKing</span> (2280 ELO)</p>
                        <p>5. <span class="highlight">SniperWolf</span> (2250 ELO)</p>
                    </div>
 
                    </div>
 
                <h3>📜 Правила сервера</h3>
                <ul class="rules-list">
                    <li>
                        <span class="rule-icon">❌</span>
                        <span>Читы и скрипты запрещены <span class="badge">PERMABAN</span></span>
                    </li>
                    <li>
                        <span class="rule-icon">⚠️</span>
                        <span>Оскорбления и токсичность наказываются</span>
                    </li>
                    <li>
                        <span class="rule-icon">🔇</span>
                        <span>Спам в чат/голосовой чат запрещен</span>
                    </li>
                    <li>
                        <span class="rule-icon">👮</span>
                        <span>Решения администрации окончательны</span>
                    </li>
                    <li>
                        <span class="rule-icon">💬</span>
                        <span>Английский/русский языки в чате</span>
                    </li>
                </ul>
 
                <div class="btn-group">
                    <a href="#" class="btn" target="_blank">Присоединиться к Discord</a>
                    <a href="#" class="btn btn-outline" target="_blank">Поддержать сервер</a>
                </div>
            </div>
 
 
        <div class="footer">
            <p>© 2025 CS Server | Мы — Лучшие</p>
        </div>
    </div>
 
    <script>
        // Простой пример динамического обновления данных
        function updateServerInfo() {
            // Здесь могут быть запросы к API сервера
            document.getElementById('online').textContent = Math.floor(Math.random() * 10 + 52) + '/64';
            document.getElementById('ping').textContent = Math.floor(Math.random() * 20 + 20) + 'ms';
        }
 
        // Обновляем информацию каждые 5 секунд
        setInterval(updateServerInfo, 5000);
    </script>
</body>
</html>

2.png

PS Онлайн будет меняться автоматом, фейк показ)


Версия 6:
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>■■■■■ CS СЕРВЕР ■■■■■</title>
    <style>
        :root {
            --primary: #8A2BE2;
            --secondary: #00F5FF;
            --accent: #FF10F0;
            --dark: #0F0F1A;
            --darker: #0A0A12;
            --light: #F0F0FF;
            --success: #00FFAA;
            --glass: rgba(255, 255, 255, 0.05);
            --neon-glow: 0 0 10px rgba(138, 43, 226, 0.7), 0 0 20px rgba(0, 245, 255, 0.5);
        }
 
        @font-face {
            font-family: 'Rajdhani';
            src: url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;700&display=swap');
        }
 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
 
        body {
            background-color: var(--darker);
            background-image:
                radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 25%),
                radial-gradient(circle at 80% 70%, rgba(0, 245, 255, 0.15) 0%, transparent 25%);
            color: var(--light);
            font-family: 'Rajdhani', 'Segoe UI', sans-serif;
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
        }
 
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem;
            perspective: 1000px;
        }
 
        .card {
            background: linear-gradient(145deg, #1A1A2E, #16213E);
            border-radius: 24px;
            box-shadow: var(--neon-glow);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 2rem;
            transform-style: preserve-3d;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            position: relative;
            backdrop-filter: blur(10px);
        }
 
        .card:hover {
            transform: translateY(-5px) rotateX(1deg) rotateY(1deg);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), var(--neon-glow);
        }
 
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 245, 255, 0.1));
            z-index: -1;
            border-radius: inherit;
        }
 
        .header {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
        }
 
        .header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iODAiIGhlaWdodD0iODAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA3KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
            opacity: 0.4;
        }
 
        h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
            background: linear-gradient(90deg, #FFF, #E0E0FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
 
        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
 
        .content {
            padding: 2.5rem;
        }
 
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
 
        .info-box {
            background: var(--glass);
            border-radius: 16px;
            padding: 1.8rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
 
        .info-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }
 
        .info-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(138, 43, 226, 0.3);
        }
 
        .info-box:hover::before {
            opacity: 1;
            animation: shine 1.5s ease;
        }
 
        @keyframes shine {
            0% { transform: rotate(45deg) translate(-30%, -30%); }
            100% { transform: rotate(45deg) translate(30%, 30%); }
        }
 
        .info-box h3 {
            color: var(--secondary);
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 600;
        }
 
        .info-box p {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.2rem;
        }
 
        .info-box p::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--accent);
        }
 
        .highlight {
            color: var(--accent);
            font-weight: 600;
            text-shadow: 0 0 8px rgba(255, 16, 240, 0.4);
        }
 
        .server-stats {
            display: flex;
            justify-content: space-around;
            background: var(--glass);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            gap: 1.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
 
        .stat-item {
            text-align: center;
            min-width: 150px;
            position: relative;
        }
 
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }
 
        .stat-value::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }
 
        .stat-item:hover .stat-value::after {
            transform: scaleX(1);
            transform-origin: left;
        }
 
        .stat-label {
            font-size: 1rem;
            opacity: 0.8;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-weight: 500;
        }
 
        .rules-list {
            list-style-type: none;
            margin-bottom: 2rem;
        }
 
        .rules-list li {
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
        }
 
        .rules-list li:hover {
            transform: translateX(10px);
            border-bottom-color: rgba(255, 16, 240, 0.3);
        }
 
        .rules-list li:last-child {
            border-bottom: none;
        }
 
        .rule-icon {
            color: var(--accent);
            flex-shrink: 0;
            font-size: 1.3rem;
            text-shadow: 0 0 10px var(--accent);
        }
 
        .badge {
            display: inline-block;
            background: linear-gradient(90deg, #FF10F0, #FF6B6B);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 0.8rem;
            box-shadow: 0 2px 8px rgba(255, 16, 240, 0.3);
        }
 
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            text-align: center;
            margin-top: 1rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
            letter-spacing: 0.5px;
        }
 
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s ease;
        }
 
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
        }
 
        .btn:hover::before {
            left: 100%;
        }
 
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            box-shadow: none;
        }
 
        .btn-outline:hover {
            background: linear-gradient(90deg, rgba(138, 43, 226, 0.2), rgba(0, 245, 255, 0.2));
        }
 
        .btn-group {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 2.5rem;
            justify-content: center;
        }
 
        .footer {
            text-align: center;
            margin-top: 3rem;
            font-size: 0.9rem;
            opacity: 0.7;
            letter-spacing: 0.5px;
        }
 
        .floating {
            animation: floating 6s ease-in-out infinite;
        }
 
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(0px); }
            100% { transform: translateY(0px); }
        }
 
        .glow {
            animation: glow 2s ease-in-out infinite alternate;
        }
 
        @keyframes glow {
            from { text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px var(--primary), 0 0 20px var(--primary); }
            to { text-shadow: 0 0 10px #FFF, 0 0 20px #FFF, 0 0 30px var(--secondary), 0 0 40px var(--secondary); }
        }
 
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
 
        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            pointer-events: none;
        }
 
        /* Адаптивность */
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }
 
            .content {
                padding: 1.5rem;
            }
 
            h1 {
                font-size: 2.2rem;
            }
 
            .server-stats {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }
 
            .btn-group {
                flex-direction: column;
                align-items: center;
            }
 
            .btn {
                width: 100%;
            }
        }
    </style>
</head>
<body>
    <div class="particles" id="particles-js"></div>
 
    <div class="container">
        <div class="card floating">
            <div class="header">
                <h1>TEST CS SERVER</h1>
                <p class="subtitle glow">Лучший игровой опыт с современными технологиями</p>
            </div>
 
            <div class="content">
                <div class="server-stats">
                    <div class="stat-item">
                        <div class="stat-value" id="online">62/64</div>
                        <div class="stat-label">Игроков онлайн</div>
                    </div>
                    <div class="stat-item">
                        <div class="stat-value" id="map">de_dust 2</div>
                        <div class="stat-label">Текущая карта</div>
                    </div>
                    <div class="stat-item">
                        <div class="stat-value" id="ping">19ms</div>
                        <div class="stat-label">Средний пинг</div>
                    </div>
                    <div class="stat-item">
                        <div class="stat-value" id="uptime">95.8%</div>
                        <div class="stat-label">Аптайм</div>
                    </div>
                </div>
     
                <div class="grid">
                    <div class="info-box">
                        <h3>🚀 Характеристики сервера</h3>
                        <p><strong>IP:</strong> <span class="highlight">ip:27015</span></p>
                        <p><strong>Локация:</strong> Москва</p>
                        <p><strong>Тикрейт:</strong> 100 Tick</p>
                        <p><strong>Античит:</strong> Тебя это ебать не должно!</p>
                        <p><strong>Рейтинг:</strong> ★★★★★ (4.9/5)</p>
                    </div>
         
                    <div class="info-box">
                        <h3>🏆 ЭЛИТНЫЙ ТОП</h3>
                        <p><span class="highlight">1. Neo</span> (3250 ELO) <span class="badge">LEGEND</span></p>
                        <p><span class="highlight">2. ScreaM</span> (3180 ELO) <span class="badge">HEADSHOT</span></p>
                        <p><span class="highlight">3. s1mple</span> (3120 ELO) <span class="badge">AWP GOD</span></p>
                        <p><span class="highlight">4. coldzera</span> (3080 ELO) <span class="badge">CLUTCH</span></p>
                        <p><span class="highlight">5. device</span> (3050 ELO) <span class="badge">SUPPORT</span></p>
                    </div>
                         
                </div>
     
                <h3 style="color: var(--secondary); margin-bottom: 1.5rem; font-size: 1.6rem; text-align: center;">⚡ ПРАВИЛА ⚡</h3>
                <ul class="rules-list">
                    <li>
                        <span class="rule-icon">🔴</span>
                        <span>Читы = <span class="highlight">Пожизненный бан</span> без возможности разбана <span class="badge">ZERO TOLERANCE</span></span>
                    </li>
                    <li>
                        <span class="rule-icon">🟠</span>
                        <span>Токсичность = <span class="highlight">Мут/Бан</span> в зависимости от тяжести</span>
                    </li>
                    <li>
                        <span class="rule-icon">🟢</span>
                        <span>Уважение к соперникам и тиммейтам <span class="badge">REQUIRED</span></span>
                    </li>
                    <li>
                        <span class="rule-icon">🔵</span>
                        <span>Баги и эксплойты должны <span class="highlight">сообщаться</span> администрации</span>
                    </li>
                    <li>
                        <span class="rule-icon">🟣</span>
                        <span>Администрация вправе изменять правила по ситуации</span>
                    </li>
                </ul>
     
                <div class="btn-group">
                    <a href="#" class="btn" target="_blank">
                        <span>🎮 Присоединиться к комьюнити</span>
                    </a>
                    <a href="#" class="btn btn-outline" target="_blank">
                        <span>💎 Премиум подписка</span>
                    </a>
                    <a href="#" class="btn" target="_blank">
                        <span>📊 Полная статистика</span>
                    </a>
                </div>
            </div>
        </div>
 
        <div class="footer">
            <p>© 2025 CS Server | Мы — Лучшие</p>
        </div>
    </div>
 
    <script>
        // Создание частиц
        function createParticles() {
            const container = document.getElementById('particles-js');
            const particleCount = window.innerWidth < 768 ? 30 : 50;
 
            for (let i = 0; i < particleCount; i++) {
                const particle = document.createElement('div');
                particle.classList.add('particle');
     
                // Случайные параметры
                const size = Math.random() * 5 + 1;
                const posX = Math.random() * window.innerWidth;
                const posY = Math.random() * window.innerHeight;
                const delay = Math.random() * 5;
                const duration = Math.random() * 10 + 10;
                const opacity = Math.random() * 0.5 + 0.1;
     
                // Применение стилей
                particle.style.width = `${size}px`;
                particle.style.height = `${size}px`;
                particle.style.left = `${posX}px`;
                particle.style.top = `${posY}px`;
                particle.style.animationDelay = `${delay}s`;
                particle.style.animationDuration = `${duration}s`;
                particle.style.opacity = opacity;
                particle.style.background = `rgba(${Math.floor(Math.random() * 100 + 155)}, ${Math.floor(Math.random() * 100 + 155)}, 255, ${opacity})`;
     
                // Анимация движения
                particle.style.animation = `floatParticle ${duration}s ease-in-out ${delay}s infinite`;
     
                container.appendChild(particle);
            }
        }
 
        // Динамическое обновление информации
        function updateServerInfo() {
            const maps = ['de_dust2', 'de_mirage', 'de_inferno', 'de_nuke', 'de_overpass', 'de_vertigo', 'de_ancient'];
            const randomMap = maps[Math.floor(Math.random() * maps.length)];
 
            document.getElementById('online').textContent = `${Math.floor(Math.random() * 10 + 52)}/64`;
            document.getElementById('map').textContent = randomMap;
            document.getElementById('ping').textContent = `${Math.floor(Math.random() * 10 + 15)}ms`;
        }
 
        // Анимация частиц
        const style = document.createElement('style');
        style.innerHTML = `
            @keyframes floatParticle {
                0% { transform: translateY(0) translateX(0); }
                25% { transform: translateY(-50px) translateX(20px); }
                50% { transform: translateY(-100px) translateX(0); }
                75% { transform: translateY(-50px) translateX(-20px); }
                100% { transform: translateY(0) translateX(0); }
            }
        `;
        document.head.appendChild(style);
 
        // Инициализация
        window.addEventListener('load', () => {
            createParticles();
            setInterval(updateServerInfo, 5000);
 
            // 3D эффект при движении мыши
            const card = document.querySelector('.card');
            document.addEventListener('mousemove', (e) => {
                const xAxis = (window.innerWidth / 2 - e.pageX) / 25;
                const yAxis = (window.innerHeight / 2 - e.pageY) / 25;
                card.style.transform = `rotateY(${xAxis}deg) rotateX(${yAxis}deg)`;
            });
 
            // Сброс при уходе мыши
            document.addEventListener('mouseleave', () => {
                card.style.transform = 'rotateY(0deg) rotateX(0deg)';
            });
        });
    </script>
</body>
</html>

6.png

PS Онлайн, карта, пинг, будет меняться автоматом, фейк показ)
Карты настраиваются тут (const maps = ['de_dust2', 'de_mirage', 'de_inferno', 'de_nuke', 'de_overpass', 'de_vertigo', 'de_ancient'];)


Версия 7:
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
     <title>■■■■■ CS СЕРВЕР ■■■■■</title>
    <style>
        /* 4K Color Palette */
        :root {
            --cs2-gold: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #FFD700 100%);
            --cs2-gold-solid: #D4AF37;
            --cs2-dark: #0A0A12;
            --cs2-darker: #05050A;
            --cs2-panel: rgba(20, 20, 30, 0.95);
            --cs2-glass: rgba(255, 255, 255, 0.08);
            --cs2-text: rgba(255, 255, 255, 0.95);
            --cs2-blue: #00A8FF;
            --cs2-danger: #FF4757;
            --cs2-success: #00D166;
        }

        /* Ultra HD Font */
        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@500;700&display=swap');

        /* Base 4K Styles */
        body {
            margin: 0;
            padding: 0;
            background:
                radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 30%),
                radial-gradient(ellipse at 80% 80%, rgba(0, 168, 255, 0.15) 0%, transparent 30%),
                linear-gradient(var(--cs2-darker), var(--cs2-dark)),
                url('https://4kwallpapers.com/images/wallpapers/counter-strike-2-3840x2160-14908.jpg');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            color: var(--cs2-text);
            font-family: 'Rajdhani', 'Orbitron', sans-serif;
            line-height: 1.8;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        /* 8K Ready Container */
        .ultimate-container {
            max-width: 1600px;
            margin: 4rem auto;
            padding: 2rem;
            perspective: 2000px;
        }

        /* Holographic Card with 3D Depth */
        .ultimate-card {
            background: var(--cs2-panel);
            border-radius: 16px;
            border-top: 6px solid;
            border-image: var(--cs2-gold);
            border-image-slice: 1;
            box-shadow:
                0 0 80px rgba(212, 175, 55, 0.4),
                inset 0 0 40px rgba(212, 175, 55, 0.2),
                0 40px 100px rgba(0, 0, 0, 0.7);
            padding: 4rem;
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 1s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        /* 3D Holographic Effect */
        .ultimate-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle,
                      rgba(212, 175, 55, 0.1) 0%,
                      transparent 70%);
            transform: rotate(45deg);
            animation: hologram 8s linear infinite;
            opacity: 0.5;
        }

        @keyframes hologram {
            0% { transform: rotate(45deg) translate(-30%, -30%); }
            100% { transform: rotate(45deg) translate(30%, 30%); }
        }

        /* Nanotech Scanline */
        .nanoscan {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg,
                      transparent,
                      var(--cs2-gold-solid),
                      transparent);
            box-shadow: 0 0 20px var(--cs2-gold-solid);
            animation: scan 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
            z-index: 10;
        }

        @keyframes scan {
            0% { top: -2px; opacity: 0; }
            5% { opacity: 1; }
            95% { opacity: 1; }
            100% { top: 102%; opacity: 0; }
        }

        /* Quantum Header */
        .ultimate-header {
            text-align: center;
            margin-bottom: 6rem;
            position: relative;
            z-index: 5;
        }

        .ultimate-header h1 {
            font-size: 6rem;
            font-weight: 900;
            letter-spacing: 4px;
            margin-bottom: 1.5rem;
            background: var(--cs2-gold);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 4px 30px rgba(212, 175, 55, 0.5);
            text-transform: uppercase;
            font-family: 'Orbitron', sans-serif;
            position: relative;
            display: inline-block;
        }

        .ultimate-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--cs2-gold);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .ultimate-header:hover h1::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .ultimate-header p {
            font-size: 1.8rem;
            letter-spacing: 3px;
            color: var(--cs2-text);
            opacity: 0.9;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            font-weight: 500;
        }

        /* Quantum Stats Grid */
        .quantum-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-bottom: 6rem;
            position: relative;
            z-index: 5;
        }

        .quantum-stat {
            background: var(--cs2-glass);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 12px;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .quantum-stat::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(212, 175, 55, 0.1) 0%,
                transparent 50%,
                rgba(0, 168, 255, 0.1) 100%
            );
            opacity: 0;
            transition: opacity 0.8s ease;
        }

        .quantum-stat:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
                        0 0 40px rgba(212, 175, 55, 0.3);
            border-color: var(--cs2-gold-solid);
        }

        .quantum-stat:hover::before {
            opacity: 1;
        }

        .quantum-value {
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: var(--cs2-gold);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 2px;
            text-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
        }

        .quantum-label {
            font-size: 1.4rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--cs2-text);
            opacity: 0.8;
            font-weight: 500;
        }

        /* Nano Panels */
        .nano-panels {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-bottom: 6rem;
            position: relative;
            z-index: 5;
        }

        .nano-panel {
            background: var(--cs2-glass);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 12px;
            padding: 3rem;
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .nano-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(212, 175, 55, 0.1),
                transparent
            );
            transition: 0.8s;
        }

        .nano-panel:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
                        0 0 30px rgba(212, 175, 55, 0.2);
            border-color: var(--cs2-gold-solid);
        }

        .nano-panel:hover::before {
            left: 100%;
        }

        .panel-heading {
            font-size: 2rem;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
            color: var(--cs2-gold-solid);
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .panel-heading::before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 20px;
            background: var(--cs2-gold);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        }

        .panel-content {
            font-size: 1.2rem;
        }

        .panel-item {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
            position: relative;
            transition: all 0.4s ease;
        }

        .panel-item::before {
            content: '➤';
            position: absolute;
            left: 0;
            color: var(--cs2-gold-solid);
            transition: all 0.4s ease;
        }

        .panel-item:hover {
            transform: translateX(10px);
        }

        .panel-item:hover::before {
            color: var(--cs2-blue);
            transform: scale(1.3);
        }

        .highlight {
            color: var(--cs2-gold-solid);
            font-weight: 700;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        }

        /* Quantum Rules */
        .quantum-rules {
            margin-bottom: 6rem;
            position: relative;
            z-index: 5;
        }

        .rules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .rule-card {
            background: var(--cs2-glass);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 12px;
            padding: 2.5rem;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .rule-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--cs2-gold);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .rule-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
                        0 0 25px rgba(212, 175, 55, 0.2);
            border-color: var(--cs2-gold-solid);
        }

        .rule-card:hover::before {
            transform: scaleY(1);
            transform-origin: top;
        }

        .rule-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--cs2-gold-solid);
        }

        .rule-text {
            font-size: 1.2rem;
            line-height: 1.8;
        }

        /* Plasma Buttons */
        .plasma-actions {
            display: flex;
            gap: 3rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 4rem;
            position: relative;
            z-index: 5;
        }

        .plasma-btn {
            padding: 1.5rem 3rem;
            border: none;
            border-radius: 8px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            letter-spacing: 2px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 1;
            text-transform: uppercase;
            font-size: 1.2rem;
        }

        .btn-gold {
            background: var(--cs2-gold);
            color: #000;
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
        }

        .btn-holo {
            background: transparent;
            border: 2px solid var(--cs2-gold-solid);
            color: var(--cs2-gold-solid);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        }

        .plasma-btn:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.7);
        }

        .plasma-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent
            );
            transition: 0.8s;
            z-index: -1;
        }

        .plasma-btn:hover::before {
            left: 100%;
        }

        /* Quantum Footer */
        .quantum-footer {
            text-align: center;
            margin-top: 6rem;
            position: relative;
            z-index: 5;
        }

        .footer-content {
            display: inline-block;
            position: relative;
        }

        .footer-text {
            font-size: 1.1rem;
            letter-spacing: 2px;
            color: var(--cs2-text);
            opacity: 0.8;
            position: relative;
            display: inline-block;
            padding: 0 2rem;
        }

        .footer-text::before,
        .footer-text::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 100px;
            height: 1px;
            background: linear-gradient(90deg,
                      var(--cs2-gold-solid),
                      transparent);
        }

        .footer-text::before {
            left: -100px;
        }

        .footer-text::after {
            right: -100px;
            background: linear-gradient(90deg,
                      transparent,
                      var(--cs2-gold-solid));
        }

        /* Particle Background */
        .particles-js {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        /* Responsive Design for 8K */
        @media (max-width: 2000px) {
            .ultimate-container {
                max-width: 1400px;
            }
        }

        @media (max-width: 1600px) {
            .ultimate-container {
                max-width: 1200px;
            }
       
            .ultimate-header h1 {
                font-size: 5rem;
            }
        }

        @media (max-width: 1200px) {
            .ultimate-container {
                max-width: 1000px;
                padding: 1.5rem;
            }
       
            .ultimate-card {
                padding: 3rem;
            }
       
            .ultimate-header h1 {
                font-size: 4rem;
            }
       
            .quantum-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .ultimate-header h1 {
                font-size: 3.5rem;
            }
       
            .plasma-actions {
                flex-direction: column;
                align-items: center;
            }
       
            .plasma-btn {
                width: 100%;
                max-width: 350px;
            }
        }

        @media (max-width: 768px) {
            .ultimate-card {
                padding: 2rem;
            }
       
            .ultimate-header h1 {
                font-size: 3rem;
            }
       
            .quantum-stats {
                grid-template-columns: 1fr;
            }
       
            .nano-panels {
                grid-template-columns: 1fr;
            }
       
            .footer-text::before,
            .footer-text::after {
                width: 50px;
            }
       
            .footer-text::before {
                left: -50px;
            }
       
            .footer-text::after {
                right: -50px;
            }
        }

        @media (max-width: 576px) {
            .ultimate-header h1 {
                font-size: 2.5rem;
                letter-spacing: 2px;
            }
       
            .ultimate-header p {
                font-size: 1.4rem;
            }
       
            .quantum-value {
                font-size: 3.5rem;
            }
       
            .panel-heading {
                font-size: 1.8rem;
            }
        }
    </style>
</head>
<body>
    <!-- Particles Background -->
    <div id="particles-js" class="particles-js"></div>
 
    <div class="ultimate-container">
        <div class="ultimate-card">
            <div class="nanoscan"></div>
       
            <div class="ultimate-header">
                <h1>ULTIMATE CSS</h1>
                <p>ЭЛИТНЫЙ КИБЕРСПОРТИВНЫЙ СЕРВЕР НОВОГО ПОКОЛЕНИЯ</p>
            </div>

            <div class="quantum-stats">
                <div class="quantum-stat">
                    <div class="quantum-value" id="online">56/64</div>
                    <div class="quantum-label">Игроков онлайн</div>
                </div>
                <div class="quantum-stat">
                    <div class="quantum-value" id="map">de_anubis</div>
                    <div class="quantum-label">Текущая карта</div>
                </div>
                <div class="quantum-stat">
                    <div class="quantum-value" id="ping">9ms</div>
                    <div class="quantum-label">Средний пинг</div>
                </div>
                <div class="quantum-stat">
                    <div class="quantum-value" id="rank">GLOBAL</div>
                    <div class="quantum-label">Средний ранг</div>
                </div>
            </div>

            <div class="nano-panels">
                <div class="nano-panel">
                    <h3 class="panel-heading">Характеристики сервера</h3>
                    <div class="panel-content">
                        <div class="panel-item">
                            <strong>IP:</strong> <span class="highlight">ip:27015</span>
                        </div>
                        <div class="panel-item">
                            <strong>Тикрейт:</strong> 100 Tick
                        </div>
                        <div class="panel-item">
                            <strong>Режим:</strong> Public
                        </div>
                        <div class="panel-item">
                            <strong>Античит:</strong> Тебя это ебать не должно!
                        </div>
                    </div>
                </div>

                <div class="nano-panel">
                    <h3 class="panel-heading">Топ игроков</h3>
                    <div class="panel-content">
                        <div class="panel-item">
                            <span class="highlight">1. s1mple</span> (Rating: 3.6)
                        </div>
                        <div class="panel-item">
                            <span class="highlight">2. ZywOo</span> (Rating: 3.5)
                        </div>
                        <div class="panel-item">
                            <span class="highlight">3. NiKo</span> (Rating: 3.4)
                        </div>
                        <div class="panel-item">
                            <span class="highlight">4. device</span> (Rating: 3.3)
                        </div>
                    </div>
                </div>

                <div class="nano-panel">
                    <h3 class="panel-heading">Турниры</h3>
                    <div class="panel-content">
                        <div class="panel-item">
                            <span class="highlight">Ultimate Cup #7</span> (Приз: $5000)
                        </div>
                        <div class="panel-item">
                            <span class="highlight">1v1 Duel</span> (Идет сейчас)
                        </div>
                        <div class="panel-item">
                            <span class="highlight">Следующий:</span> Wingman Elite
                        </div>
                        <div class="panel-item">
                            <span class="highlight">Регистрация:</span> Открыта
                        </div>
                    </div>
                </div>
            </div>

            <div class="quantum-rules">
                <h3 class="panel-heading" style="justify-content: center; border: none; margin-bottom: 3rem;">
                    ПРАВИЛА ULTIMATE CSS
                </h3>
                <div class="rules-grid">
                    <div class="rule-card">
                        <div class="rule-icon">⚡</div>
                        <div class="rule-text">
                            <strong>Читы:</strong> Перманентный бан с HWID блокировкой и репортом в VAC
                        </div>
                    </div>
                    <div class="rule-card">
                        <div class="rule-icon">🔊</div>
                        <div class="rule-text">
                            <strong>Токсичность:</strong> Наказывается мутом или баном в зависимости от тяжести
                        </div>
                    </div>
                    <div class="rule-card">
                        <div class="rule-icon">👮</div>
                        <div class="rule-text">
                            <strong>Администрация:</strong> Решения админов окончательны и не обсуждаются
                        </div>
                    </div>
                    <div class="rule-card">
                        <div class="rule-icon">🐞</div>
                        <div class="rule-text">
                            <strong>Баги:</strong> Использование багов карты или механик запрещено
                        </div>
                    </div>
                </div>
            </div>

            <div class="plasma-actions">
                <button class="plasma-btn btn-gold">ПРИСОЕДИНИТЬСЯ</button>
                <button class="plasma-btn btn-holo">DISCORD</button>
                <button class="plasma-btn btn-holo">СТАТИСТИКА</button>
            </div>

            <div class="quantum-footer">
                <div class="footer-content">
                    <p class="footer-text">© 2025 | ULTIMATE CSS SERVER | Мы — Лучшие</p>
                </div>
            </div>
        </div>
    </div>

    <!-- Particles.js Library -->
    <script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
 
    <script>
        // Ultra HD Dynamic Data
        function updateServerData() {
            const maps = ['de_anubis', 'de_inferno', 'de_mirage', 'de_nuke', 'de_vertigo', 'de_ancient'];
            const randomMap = maps[Math.floor(Math.random() * maps.length)];
       
            document.getElementById('online').textContent = `${Math.floor(Math.random() * 10 + 52)}/64`;
            document.getElementById('map').textContent = randomMap;
            document.getElementById('ping').textContent = `${Math.floor(Math.random() * 5 + 8)}ms`;
        }

 
        document.addEventListener('mouseleave', () => {
            card.style.transform = 'rotateY(0deg) rotateX(0deg)';
        });

        // Update data every 5 seconds
        setInterval(updateServerData, 5000);
        updateServerData();

        // Initialize Particles.js
        document.addEventListener('DOMContentLoaded', function() {
            particlesJS('particles-js', {
                "particles": {
                    "number": {
                        "value": 120,
                        "density": {
                            "enable": true,
                            "value_area": 800
                        }
                    },
                    "color": {
                        "value": "#D4AF37"
                    },
                    "shape": {
                        "type": "circle",
                        "stroke": {
                            "width": 0,
                            "color": "#000000"
                        },
                        "polygon": {
                            "nb_sides": 5
                        }
                    },
                    "opacity": {
                        "value": 0.5,
                        "random": true,
                        "anim": {
                            "enable": true,
                            "speed": 1,
                            "opacity_min": 0.1,
                            "sync": false
                        }
                    },
                    "size": {
                        "value": 3,
                        "random": true,
                        "anim": {
                            "enable": true,
                            "speed": 2,
                            "size_min": 0.1,
                            "sync": false
                        }
                    },
                    "line_linked": {
                        "enable": true,
                        "distance": 150,
                        "color": "#D4AF37",
                        "opacity": 0.2,
                        "width": 1
                    },
                    "move": {
                        "enable": true,
                        "speed": 1,
                        "direction": "none",
                        "random": true,
                        "straight": false,
                        "out_mode": "out",
                        "bounce": false,
                        "attract": {
                            "enable": true,
                            "rotateX": 600,
                            "rotateY": 1200
                        }
                    }
                },
                "interactivity": {
                    "detect_on": "canvas",
                    "events": {
                        "onhover": {
                            "enable": true,
                            "mode": "grab"
                        },
                        "onclick": {
                            "enable": true,
                            "mode": "push"
                        },
                        "resize": true
                    },
                    "modes": {
                        "grab": {
                            "distance": 140,
                            "line_linked": {
                                "opacity": 0.5
                            }
                        },
                        "bubble": {
                            "distance": 400,
                            "size": 40,
                            "duration": 2,
                            "opacity": 8,
                            "speed": 3
                        },
                        "repulse": {
                            "distance": 200,
                            "duration": 0.4
                        },
                        "push": {
                            "particles_nb": 4
                        },
                        "remove": {
                            "particles_nb": 2
                        }
                    }
                },
                "retina_detect": true
            });
        });
    </script>
</body>
</html>

7.png

PS Онлайн, карта, пинг, будет меняться автоматом, фейк показ)
Карты настраиваются тут (const maps = ['de_dust2', 'de_mirage', 'de_inferno', 'de_nuke', 'de_overpass', 'de_vertigo', 'de_ancient'];)


Версия 8:
<!DOCTYPE html>
<html>
<head>
    <style>
        :root {
            --accent: #6C5CE7;
            --accent-dark: #5649C0;
            --text: #F5F6FA;
            --bg: rgba(20, 20, 30, 0.85);
            --glass: rgba(255, 255, 255, 0.1);
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
     
        body {
            background: linear-gradient(135deg, #1A1A2E, #16213E);
            color: var(--text);
            font-family: 'Segoe UI', Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            min-height: 100vh;
        }
     
        .container {
            max-width: 800px;
            width: 90%;
            margin: 20px;
            backdrop-filter: blur(12px);
            background: var(--bg);
            border-radius: 16px;
            border: 1px solid var(--glass);
            box-shadow: var(--shadow);
            overflow: hidden;
        }
     
        .header {
            padding: 24px;
            text-align: center;
            background: linear-gradient(90deg, var(--accent), var(--accent-dark));
            color: white;
        }
     
        .logo {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }
     
        .subtitle {
            opacity: 0.9;
            font-size: 14px;
        }
     
        .content {
            padding: 24px;
        }
     
        .card {
            background: var(--glass);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 16px;
            transition: transform 0.3s;
        }
     
        .card:hover {
            transform: translateY(-4px);
        }
     
        .card-title {
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
     
        .rules-list {
            padding-left: 20px;
        }
     
        .rules-list li {
            margin-bottom: 8px;
            position: relative;
            list-style-type: none;
        }
     
        .rules-list li:before {
            content: "•";
            color: var(--accent);
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
     
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background: linear-gradient(90deg, var(--accent), var(--accent-dark));
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 8px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
     
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(108, 92, 231, 0.4);
        }
     
        .footer {
            text-align: center;
            padding: 16px;
            font-size: 12px;
            opacity: 0.7;
            border-top: 1px solid var(--glass);
        }
     
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
     
        .animate {
            animation: fadeIn 0.6s ease-out forwards;
        }
     
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
    </style>
</head>
<body>
    <div class="container">
        <div class="header">
            <div class="logo animate">COUNTER-STRIKE: SOURCE</div>
            <div class="subtitle animate delay-1">COUNTER-STRIKE: SOURCE 2025</div>
        </div>
     
        <div class="content">
            <div class="card animate delay-1">
                <div class="card-title">🔥 ДОБРО ПОЖАЛОВАТЬ</div>
                <p>Приветствуем на самом современном CS:S сервере! У нас:</p>
                <ul class="rules-list">
                    <li>100-tick gameplay</li>
                    <li>Античит с машинным обучением</li>
                    <li>Ежедневные турниры</li>
                </ul>
            </div>
         
            <div class="card animate delay-2">
                <div class="card-title">📜 ОСНОВНЫЕ ПРАВИЛА</div>
                <ul class="rules-list">
                    <li>Никаких читов — перманентный бан</li>
                    <li>Токсичность = мут/бан</li>
                    <li>Уважайте других игроков</li>
                    <li>Баги/эксплойты — сообщать админам</li>
                </ul>
            </div>
         
            <div class="card animate delay-3">
                <div class="card-title">🔗 СОЦИАЛЬНЫЕ СЕТИ</div>
                <p>Присоединяйтесь к нашему комьюнити:</p>
                <a href="#" class="btn">DISCORD</a>
                <a href="#" class="btn">TELEGRAM</a>
                <a href="#" class="btn">VK</a>
            </div>
        </div>
     
        <div class="footer animate delay-3">
            © 2025 CS:S SERVER | Все права защищены
        </div>
    </div>
</body>
</html>

1.png


C-подобный:
В связи с тем что motd не читает такой код, вам придётся залить свой файл мод окна на любой web хостинг, который работает с html (даже если он бесплатный)
И уже в motd файле который на сервере указать

<html>
    <head>
        <meta http-equiv="REFRESH" content="0;URL=https://Название вашего хостинга/файл">
    </head>
    <body>
    </body>
</html>

PS Решение буду искать, если кто знает как реализовать без веб хостинга, напишите.

Я всё ещё их обновляю и добавляю разные версии

Сделал 8 версий 🤝
 
Последнее редактирование:

DENZEL519

Работаю с AI !
Сообщения
417
Реакции
198
В связи с тем что motd не читает такой код, вам придётся залить свой файл мод окна на любой web хостинг, который работает с html (даже если он бесплатный)

И уже в motd файле который на сервере указать

C-подобный:
<html>
    <head>
        <meta http-equiv="REFRESH" content="0;URL=https://Название вашего хостинга/файл">
    </head>
    <body>
    </body>
</html>

PS Решение буду искать, если кто знает как реализовать без веб хостинга, напишите.
 
Сверху Снизу