<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ГОСС Yakubov</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: #0d0d0d;
            color: #fff;
            overflow-x: hidden;
        }

        .bg-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 0, 139, 0.15) 0%, transparent 50%),
                linear-gradient(180deg, #0d0d0d 0%, #1a0a0a 50%, #0d0d0d 100%);
            z-index: -1;
        }

        .header {
            background: linear-gradient(180deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
            backdrop-filter: blur(20px);
            border-bottom: 2px solid;
            border-image: linear-gradient(90deg, #8b0000, #00008b, #8b0000) 1;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(139, 0, 0, 0.3);
        }

        .header-top {
            background: rgba(0, 0, 0, 0.4);
            padding: 8px 0;
            border-bottom: 1px solid rgba(139, 0, 0, 0.3);
        }

        .header-top-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
        }

        .server-info {
            color: #888;
        }

        .server-info span {
            margin-right: 20px;
        }

        .online-count {
            color: #0f0;
            font-weight: bold;
        }

        .user-panel {
            display: flex;
            gap: 15px;
        }

        .user-panel a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s;
        }

        .user-panel a:hover {
            color: #8b0000;
        }

        .header-main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #8b0000 0%, #dc143c 50%, #8b0000 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 32px;
            color: #fff;
            box-shadow: 
                0 0 30px rgba(139, 0, 0, 0.8),
                0 0 60px rgba(139, 0, 0, 0.4),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
            border: 3px solid rgba(220, 20, 60, 0.5);
            position: relative;
        }

        .logo::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 36px;
            font-weight: bold;
            background: linear-gradient(90deg, #8b0000 0%, #dc143c 50%, #8b0000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(139, 0, 0, 0.8);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .brand-subtitle {
            font-size: 12px;
            color: #666;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .nav {
            display: flex;
            gap: 5px;
        }

        .nav a {
            color: #ccc;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 4px;
            transition: all 0.3s;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .nav a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.3), transparent);
            transition: left 0.5s;
        }

        .nav a:hover::before {
            left: 100%;
        }

        .nav a:hover {
            background: rgba(139, 0, 0, 0.2);
            color: #fff;
            box-shadow: 0 0 20px rgba(139, 0, 0, 0.4);
        }

        .nav a.active {
            background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
            color: #fff;
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.6);
        }

        .container {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 30px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .stat-box {
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(40, 10, 10, 0.6) 100%);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid rgba(139, 0, 0, 0.3);
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .stat-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .stat-box:hover::before {
            opacity: 1;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            border-color: #8b0000;
            box-shadow: 0 8px 30px rgba(139, 0, 0, 0.4);
        }

        .stat-icon {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .stat-value {
            font-size: 32px;
            font-weight: bold;
            background: linear-gradient(90deg, #8b0000 0%, #dc143c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 13px;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .forum-category {
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(40, 10, 10, 0.7) 100%);
            backdrop-filter: blur(15px);
            border-radius: 12px;
            margin-bottom: 25px;
            border: 1px solid rgba(139, 0, 0, 0.3);
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }

        .category-header {
            background: linear-gradient(90deg, rgba(139, 0, 0, 0.3) 0%, rgba(0, 0, 139, 0.2) 100%);
            padding: 20px 30px;
            border-bottom: 2px solid;
            border-image: linear-gradient(90deg, #8b0000, #00008b) 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .category-title {
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #dc143c;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .category-icon {
            font-size: 24px;
        }

        .new-thread-btn {
            background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
        }

        .new-thread-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(139, 0, 0, 0.6);
        }

        .thread {
            padding: 20px 30px;
            border-bottom: 1px solid rgba(139, 0, 0, 0.2);
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
        }

        .thread::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: linear-gradient(180deg, #8b0000 0%, #dc143c 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .thread:hover::before {
            opacity: 1;
        }

        .thread:last-child {
            border-bottom: none;
        }

        .thread:hover {
            background: rgba(139, 0, 0, 0.1);
            padding-left: 40px;
        }

        .thread-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .thread-title-row {
            flex: 1;
        }

        .thread-title {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .thread-badge {
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-pinned {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            color: #000;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .badge-new {
            background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
            color: #000;
            box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
        }

        .badge-hot {
            background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
            color: #fff;
            box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
        }

        .thread-author {
            font-size: 13px;
            color: #888;
        }

        .thread-author strong {
            color: #dc143c;
            font-weight: 600;
        }

        .thread-stats {
            display: flex;
            gap: 20px;
            font-size: 13px;
            color: #666;
            align-items: center;
        }

        .thread-stats span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .thread-last-post {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 10px 15px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 6px;
            min-width: 200px;
        }

        .last-post-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
            border: 2px solid rgba(139, 0, 0, 0.5);
        }

        .last-post-info {
            flex: 1;
        }

        .last-post-user {
            font-size: 13px;
            color: #dc143c;
            font-weight: 600;
        }

        .last-post-time {
            font-size: 11px;
            color: #666;
        }

        .watermark {
            position: fixed;
            bottom: 30px;
            right: 30px;
            font-size: 14px;
            font-weight: bold;
            color: rgba(139, 0, 0, 0.3);
            text-transform: uppercase;
            letter-spacing: 2px;
            pointer-events: none;
            text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
        }

        @media (max-width: 1200px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-main {
                flex-direction: column;
                gap: 20px;
            }

            .nav {
                flex-wrap: wrap;
                justify-content: center;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .thread-top {
                flex-direction: column;
                gap: 15px;
            }

            .thread-last-post {
                width: 100%;
            }
        }
    </style>
</head>
<body>
    <div class="bg-overlay"></div>

    <div class="header">
        <div class="header-top">
            <div class="header-top-content">
                <div class="server-info">
                    <span>&#127760; IP: play.gossyakubov.ru</span>
                    <span class="online-count">&#9679; 1,247 онлайн</span>
                </div>
                <div class="user-panel">
                    <a href="#login">Войти</a>
                    <a href="#register">Регистрация</a>
                </div>
            </div>
        </div>
        <div class="header-main">
            <div class="logo-container">
                <div class="logo">ГY</div>
                <div class="brand-text">
                    <div class="brand-name">ГОСС Yakubov</div>
                    <div class="brand-subtitle">Официальный Форум</div>
                </div>
            </div>
            <nav class="nav">
                <a href="#" class="active">Главная</a>
                <a href="#forum">Форум</a>
                <a href="#shop">Донат</a>
                <a href="#wiki">База знаний</a>
                <a href="#support">Поддержка</a>
            </nav>
        </div>
    </div>

    <div class="container">
        <div class="stats-grid">
            <div class="stat-box">
                <div class="stat-icon">&#128101;</div>
                <div class="stat-value">12,547</div>
                <div class="stat-label">Участников</div>
            </div>
            <div class="stat-box">
                <div class="stat-icon">&#128172;</div>
                <div class="stat-value">89,234</div>
                <div class="stat-label">Сообщений</div>
            </div>
            <div class="stat-box">
                <div class="stat-icon">&#128221;</div>
                <div class="stat-value">4,521</div>
                <div class="stat-label">Тем</div>
            </div>
            <div class="stat-box">
                <div class="stat-icon">&#128994;</div>
                <div class="stat-value">1,247</div>
                <div class="stat-label">Онлайн</div>
            </div>
        </div>

        <div class="forum-category">
            <div class="category-header">
                <div class="category-title">
                    <span class="category-icon">&#128226;</span>
                    Объявления и Новости
                </div>
                <button class="new-thread-btn">+ Создать тему</button>
            </div>
            
            <div class="thread">
                <div class="thread-top">
                    <div class="thread-title-row">
                        <div class="thread-title">
                            Официальные правила сервера ГОСС Yakubov 2024
                            <span class="thread-badge badge-pinned">&#128204; Закреплено</span>
                        </div>
                        <div class="thread-author">Автор: <strong>Yakubov</strong></div>
                    </div>
                    <div class="thread-last-post">
                        <div class="last-post-avatar">A</div>
                        <div class="last-post-info">
                            <div class="last-post-user">AdminGOSS</div>
                            <div class="last-post-time">5 минут назад</div>
                        </div>
                    </div>
                </div>
                <div class="thread-stats">
                    <span>&#128172; 342</span>
                    <span>&#128065; 15,678</span>
                    <span>&#11088; 4.9</span>
                </div>
            </div>

            <div class="thread">
                <div class="thread-top">
                    <div class="thread-title-row">
                        <div class="thread-title">
                            Обновление 2.5 - Новая система фракций
                            <span class="thread-badge badge-hot">&#128293; Горячее</span>
                        </div>
                        <div class="thread-author">Автор: <strong>Developer</strong></div>
                    </div>
                    <div class="thread-last-post">
                        <div class="last-post-avatar">M</div>
                        <div class="last-post-info">
                            <div class="last-post-user">Moderator</div>
                            <div class="last-post-time">15 минут назад</div>
                        </div>
                    </div>
                </div>
                <div class="thread-stats">
                    <span>&#128172; 156</span>
                    <span>&#128065; 8,234</span>
                    <span>&#11088; 4.7</span>
                </div>
            </div>

            <div class="thread">
                <div class="thread-top">
                    <div class="thread-title-row">
                        <div class="thread-title">
                            Важно! Изменения в правилах донат-магазина
                            <span class="thread-badge badge-new">&#10024; Новое</span>
                        </div>
                        <div class="thread-author">Автор: <strong>Yakubov</strong></div>
                    </div>
                    <div class="thread-last-post">
                        <div class="last-post-avatar">Y</div>
                        <div class="last-post-info">
                            <div class="last-post-user">Yakubov</div>
                            <div class="last-post-time">1 час назад</div>
                        </div>
                    </div>
                </div>
                <div class="thread-stats">
                    <span>&#128172; 89</span>
                    <span>&#128065; 3,456</span>
                    <span>&#11088; 4.8</span>
                </div>
            </div>
        </div>

        <div class="forum-category">
            <div class="category-header">
                <div class="category-title">
                    <span class="category-icon">&#127918;</span>
                    Игровой процесс
                </div>
                <button class="new-thread-btn">+ Создать тему</button>
            </div>
            
            <div class="thread">
                <div class="thread-top">
                    <div class="thread-title-row">
                        <div class="thread-title">
                            Гайд для новичков - С чего начать?
                        </div>
                        <div class="thread-author">Автор: <strong>Helper_Max</strong></div>
                    </div>
                    <div class="thread-last-post">
                        <div class="last-post-avatar">N</div>
                        <div class="last-post-info">
                            <div class="last-post-user">Newbie2024</div>
                            <div class="last-post-time">30 минут назад</div>
                        </div>
                    </div>
                </div>
                <div class="thread-stats">
                    <span>&#128172; 234</span>
                    <span>&#128065; 12,567</span>
                    <span>&#11088; 5.0</span>
                </div>
            </div>

            <div class="thread">
                <div class="thread-top">
                    <div class="thread-title-row">
                        <div class="thread-title">
                            Лучшие места для заработка на сервере
                            <span class="thread-badge badge-hot">&#128293; Горячее</span>
                        </div>
                        <div class="thread-author">Автор: <strong>ProPlayer</strong></div>
                    </div>
                    <div class="thread-last-post">
                        <div class="last-post-avatar">G</div>
                        <div class="last-post-info">
                            <div class="last-post-user">Gamer777</div>
                            <div class="last-post-time">2 часа назад</div>
                        </div>
                    </div>
                </div>
                <div class="thread-stats">
                    <span>&#128172; 445</span>
                    <span>&#128065; 23,891</span>
                    <span>&#11088; 4.6</span>
                </div>
            </div>

            <div class="thread">
                <div class="thread-top">
                    <div class="thread-title-row">
                        <div class="thread-title">
                            Все о фракциях: Какую выбрать?
                        </div>
                        <div class="thread-author">Автор: <strong>Leader_Vlad</strong></div>
                    </div>
                    <div class="thread-last-post">
                        <div class="last-post-avatar">F</div>
                        <div class="last-post-info">
                            <div class="last-post-user">FactionFan</div>
                            <div class="last-post-time">3 часа назад</div>
                        </div>
                    </div>
                </div>
                <div class="thread-stats">
                    <span>&#128172; 312</span>
                    <span>&#128065; 18,234</span>
                    <span>&#11088; 4.9</span>
                </div>
            </div>
        </div>

        <div class="forum-category">
            <div class="category-header">
                <div class="category-title">
                    <span class="category-icon">&#128188;</span>
                    Рынок и Торговля
                </div>
                <button class="new-thread-btn">+ Создать тему</button>
            </div>
            
            <div class="thread">
                <div class="thread-top">
                    <div class="thread-title-row">
                        <div class="thread-title">
                            [ПРОДАЖА] Редкие автомобили и недвижимость
                        </div>
                        <div class="thread-author">Автор: <strong>Trader_Ivan</strong></div>
                    </div>
                    <div class="thread-last-post">
                        <div class="last-post-avatar">B</div>
                        <div class="last-post-info">
                            <div class="last-post-user">Buyer123</div>
                            <div class="last-post-time">20 минут назад</div>
                        </div>
                    </div>
                </div>
                <div class="thread-stats">
                    <span>&#128172; 67</span>
                    <span>&#128065; 2,345</span>
                    <span>&#11088; 4.5</span>
                </div>
            </div>

            <div class="thread">
                <div class="thread-top">
                    <div class="thread-title-row">
                        <div class="thread-title">
                            [ПОКУПКА] Ищу бизнес в центре города
                            <span class="thread-badge badge-new">&#10024; Новое</span>
                        </div>
                        <div class="thread-author">Автор: <strong>Businessman</strong></div>
                    </div>
                    <div class="thread-last-post">
                        <div class="last-post-avatar">S</div>
                        <div class="last-post-info">
                            <div class="last-post-user">Seller_Pro</div>
                            <div class="last-post-time">1 час назад</div>
                        </div>
                    </div>
                </div>
                <div class="thread-stats">
                    <span>&#128172; 23</span>
                    <span>&#128065; 891</span>
                    <span>&#11088; 4.3</span>
                </div> <!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ГОСС Yakubov</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: #0d0d0d;
            color: #fff;
            overflow-x: hidden;
        }

        .bg-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 0, 139, 0.15) 0%, transparent 50%),
                linear-gradient(180deg, #0d0d0d 0%, #1a0a0a 50%, #0d0d0d 100%);
            z-index: -1;
        }

        .header {
            background: linear-gradient(180deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
            backdrop-filter: blur(20px);
            border-bottom: 2px solid;
            border-image: linear-gradient(90deg, #8b0000, #00008b, #8b0000) 1;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(139, 0, 0, 0.3);
        }

        .header-top {
            background: rgba(0, 0, 0, 0.4);
            padding: 8px 0;
            border-bottom: 1px solid rgba(139, 0, 0, 0.3);
        }

        .header-top-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
        }

        .server-info {
            color: #888;
        }

        .server-info span {
            margin-right: 20px;
        }

        .online-count {
            color: #0f0;
            font-weight: bold;
        }

        .user-panel {
            display: flex;
            gap: 15px;
        }

        .user-panel a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s;
        }

        .user-panel a:hover {
            color: #8b0000;
        }

        .header-main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #8b0000 0%, #dc143c 50%, #8b0000 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 32px;
            color: #fff;
            box-shadow: 
                0 0 30px rgba(139, 0, 0, 0.8),
                0 0 60px rgba(139, 0, 0, 0.4),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
            border: 3px solid rgba(220, 20, 60, 0.5);
            position: relative;
        }

        .logo::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 36px;
            font-weight: bold;
            background: linear-gradient(90deg, #8b0000 0%, #dc143c 50%, #8b0000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(139, 0, 0, 0.8);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .brand-subtitle {
            font-size: 12px;
            color: #666;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .nav {
            display: flex;
            gap: 5px;
        }

        .nav a {
            color: #ccc;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 4px;
            transition: all 0.3s;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .nav a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.3), transparent);
            transition: left 0.5s;
        }

        .nav a:hover::before {
            left: 100%;
        }

        .nav a:hover {
            background: rgba(139, 0, 0, 0.2);
            color: #fff;
            box-shadow: 0 0 20px rgba(139, 0, 0, 0.4);
        }

        .nav a.active {
            background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
            color: #fff;
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.6);
        }

        .container {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 30px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .stat-box {
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(40, 10, 10, 0.6) 100%);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid rgba(139, 0, 0, 0.3);
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .stat-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .stat-box:hover::before {
            opacity: 1;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            border-color: #8b0000;
            box-shadow: 0 8px 30px rgba(139, 0, 0, 0.4);
        }

        .stat-icon {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .stat-value {
            font-size: 32px;
            font-weight: bold;
            background: linear-gradient(90deg, #8b0000 0%, #dc143c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 13px;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .forum-category {
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(40, 10, 10, 0.7) 100%);
            backdrop-filter: blur(15px);
            border-radius: 12px;
            margin-bottom: 25px;
            border: 1px solid rgba(139, 0, 0, 0.3);
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }

        .category-header {
            background: linear-gradient(90deg, rgba(139, 0, 0, 0.3) 0%, rgba(0, 0, 139, 0.2) 100%);
            padding: 20px 30px;
            border-bottom: 2px solid;
            border-image: linear-gradient(90deg, #8b0000, #00008b) 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .category-title {
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #dc143c;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .category-icon {
            font-size: 24px;
        }

        .new-thread-btn {
            background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
        }

        .new-thread-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(139, 0, 0, 0.6);
        }

        .thread {
            padding: 20px 30px;
            border-bottom: 1px solid rgba(139, 0, 0, 0.2);
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
        }

        .thread::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: linear-gradient(180deg, #8b0000 0%, #dc143c 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .thread:hover::before {
            opacity: 1;
        }

        .thread:last-child {
            border-bottom: none;
        }

        .thread:hover {
            background: rgba(139, 0, 0, 0.1);
            padding-left: 40px;
        }

        .thread-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .thread-title-row {
            flex: 1;
        }

        .thread-title {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .thread-badge {
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-pinned {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            color: #000;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .badge-new {
            background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
            color: #000;
            box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
        }

        .badge-hot {
            background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
            color: #fff;
            box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
        }

        .thread-author {
            font-size: 13px;
            color: #888;
        }

        .thread-author strong {
            color: #dc143c;
            font-weight: 600;
        }

        .thread-stats {
            display: flex;
            gap: 20px;
            font-size: 13px;
            color: #666;
            align-items: center;
        }

        .thread-stats span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .thread-last-post {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 10px 15px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 6px;
            min-width: 200px;
        }

        .last-post-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
            border: 2px solid rgba(139, 0, 0, 0.5);
        }

        .last-post-info {
            flex: 1;
        }

        .last-post-user {
            font-size: 13px;
            color: #dc143c;
            font-weight: 600;
        }

        .last-post-time {
            font-size: 11px;
            color: #666;
        }

        .watermark {
            position: fixed;
            bottom: 30px;
            right: 30px;
            font-size: 14px;
            font-weight: bold;
            color: rgba(139, 0, 0, 0.3);
            text-transform: uppercase;
            letter-spacing: 2px;
            pointer-events: none;
            text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
        }

        @media (max-width: 1200px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-main {
                flex-direction: column;
                gap: 20px;
            }

            .nav {
                flex-wrap: wrap;
                justify-content: center;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .thread-top {
                flex-direction: column;
                gap: 15px;
            }

            .thread-last-post {
                width: 100%;
            }
        }
    </style>
</head>
<body>
    <div class="bg-overlay"></div>

    <div class="header">
        <div class="header-top">
            <div class="header-top-content">
                <div class="server-info">
                    <span>&#127760; IP: play.gossyakubov.ru</span>
                    <span class="online-count">&#9679; 1,247 онлайн</span>
                </div>
                <div class="user-panel">
                    <a href="#login">Войти</a>
                    <a href="#register">Регистрация</a>
                </div>
            </div>
        </div>
        <div class="header-main">
            <div class="logo-container">
                <div class="logo">ГY</div>
                <div class="brand-text">
                    <div class="brand-name">ГОСС Yakubov</div>
                    <div class="brand-subtitle">Официальный Форум</div>
                </div>
            </div>
            <nav class="nav">
                <a href="#" class="active">Главная</a>
                <a href="#forum">Форум</a>
                <a href="#shop">Донат</a>
                <a href="#wiki">База знаний</a>
                <a href="#support">Поддержка</a>
            </nav>
        </div>
    </div>

    <div class="container">
        <div class="stats-grid">
            <div class="stat-box">
                <div class="stat-icon">&#128101;</div>
                <div class="stat-value">12,547</div>
                <div class="stat-label">Участников</div>
            </div>
            <div class="stat-box">
                <div class="stat-icon">&#128172;</div>
                <div class="stat-value">89,234</div>
                <div class="stat-label">Сообщений</div>
            </div>
            <div class="stat-box">
                <div class="stat-icon">&#128221;</div>
                <div class="stat-value">4,521</div>
                <div class="stat-label">Тем</div>
            </div>
            <div class="stat-box">
                <div class="stat-icon">&#128994;</div>
                <div class="stat-value">1,247</div>
                <div class="stat-label">Онлайн</div>
            </div>
        </div>

        <div class="forum-category">
            <div class="category-header">
                <div class="category-title">
                    <span class="category-icon">&#128226;</span>
                    Объявления и Новости
                </div>
                <button class="new-thread-btn">+ Создать тему</button>
            </div>
            
            <div class="thread">
                <div class="thread-top">
                    <div class="thread-title-row">
                        <div class="thread-title">
                            Официальные правила сервера ГОСС Yakubov 2024
                            <span class="thread-badge badge-pinned">&#128204; Закреплено</span>
                        </div>
                        <div class="thread-author">Автор: <strong>Yakubov</strong></div>
                    </div>
                    <div class="thread-last-post">
                        <div class="last-post-avatar">A</div>
                        <div class="last-post-info">
                            <div class="last-post-user">AdminGOSS</div>
                            <div class="last-post-time">5 минут назад</div>
                        </div>
                    </div>
                </div>
                <div class="thread-stats">
                    <span>&#128172; 342</span>
                    <span>&#128065; 15,678</span>
                    <span>&#11088; 4.9</span>
                </div>
            </div>

            <div class="thread">
                <div class="thread-top">
                    <div class="thread-title-row">
                        <div class="thread-title">
                            Обновление 2.5 - Новая система фракций
                            <span class="thread-badge badge-hot">&#128293; Горячее</span>
                        </div>
                        <div class="thread-author">Автор: <strong>Developer</strong></div>
                    </div>
                    <div class="thread-last-post">
                        <div class="last-post-avatar">M</div>
                        <div class="last-post-info">
                            <div class="last-post-user">Moderator</div>
                            <div class="last-post-time">15 минут назад</div>
                        </div>
                    </div>
                </div>
                <div class="thread-stats">
                    <span>&#128172; 156</span>
                    <span>&#128065; 8,234</span>
                    <span>&#11088; 4.7</span>
                </div>
            </div>

            <div class="thread">
                <div class="thread-top">
                    <div class="thread-title-row">
                        <div class="thread-title">
                            Важно! Изменения в правилах донат-магазина
                            <span class="thread-badge badge-new">&#10024; Новое</span>
                        </div>
                        <div class="thread-author">Автор: <strong>Yakubov</strong></div>
                    </div>
                    <div class="thread-last-post">
                        <div class="last-post-avatar">Y</div>
                        <div class="last-post-info">
                            <div class="last-post-user">Yakubov</div>
                            <div class="last-post-time">1 час назад</div>
                        </div>
                    </div>
                </div>
                <div class="thread-stats">
                    <span>&#128172; 89</span>
                    <span>&#128065; 3,456</span>
                    <span>&#11088; 4.8</span>
                </div>
            </div>
        </div>

        <div class="forum-category">
            <div class="category-header">
                <div class="category-title">
                    <span class="category-icon">&#127918;</span>
                    Игровой процесс
                </div>
                <button class="new-thread-btn">+ Создать тему</button>
            </div>
            
            <div class="thread">
                <div class="thread-top">
                    <div class="thread-title-row">
                        <div class="thread-title">
                            Гайд для новичков - С чего начать?
                        </div>
                        <div class="thread-author">Автор: <strong>Helper_Max</strong></div>
                    </div>
                    <div class="thread-last-post">
                        <div class="last-post-avatar">N</div>
                        <div class="last-post-info">
                            <div class="last-post-user">Newbie2024</div>
                            <div class="last-post-time">30 минут назад</div>
                        </div>
                    </div>
                </div>
                <div class="thread-stats">
                    <span>&#128172; 234</span>
                    <span>&#128065; 12,567</span>
                    <span>&#11088; 5.0</span>
                </div>
            </div>

            <div class="thread">
                <div class="thread-top">
                    <div class="thread-title-row">
                        <div class="thread-title">
                            Лучшие места для заработка на сервере
                            <span class="thread-badge badge-hot">&#128293; Горячее</span>
                        </div>
                        <div class="thread-author">Автор: <strong>ProPlayer</strong></div>
                    </div>
                    <div class="thread-last-post">
                        <div class="last-post-avatar">G</div>
                        <div class="last-post-info">
                            <div class="last-post-user">Gamer777</div>
                            <div class="last-post-time">2 часа назад</div>
                        </div>
                    </div>
                </div>
                <div class="thread-stats">
                    <span>&#128172; 445</span>
                    <span>&#128065; 23,891</span>
                    <span>&#11088; 4.6</span>
                </div>
            </div>

            <div class="thread">
                <div class="thread-top">
                    <div class="thread-title-row">
                        <div class="thread-title">
                            Все о фракциях: Какую выбрать?
                        </div>
                        <div class="thread-author">Автор: <strong>Leader_Vlad</strong></div>
                    </div>
                    <div class="thread-last-post">
                        <div class="last-post-avatar">F</div>
                        <div class="last-post-info">
                            <div class="last-post-user">FactionFan</div>
                            <div class="last-post-time">3 часа назад</div>
                        </div>
                    </div>
                </div>
                <div class="thread-stats">
                    <span>&#128172; 312</span>
                    <span>&#128065; 18,234</span>
                    <span>&#11088; 4.9</span>
                </div>
            </div>
        </div>

        <div class="forum-category">
            <div class="category-header">
                <div class="category-title">
                    <span class="category-icon">&#128188;</span>
                    Рынок и Торговля
                </div>
                <button class="new-thread-btn">+ Создать тему</button>
            </div>
            
            <div class="thread">
                <div class="thread-top">
                    <div class="thread-title-row">
                        <div class="thread-title">
                            [ПРОДАЖА] Редкие автомобили и недвижимость
                        </div>
                        <div class="thread-author">Автор: <strong>Trader_Ivan</strong></div>
                    </div>
                    <div class="thread-last-post">
                        <div class="last-post-avatar">B</div>
                        <div class="last-post-info">
                            <div class="last-post-user">Buyer123</div>
                            <div class="last-post-time">20 минут назад</div>
                        </div>
                    </div>
                </div>
                <div class="thread-stats">
                    <span>&#128172; 67</span>
                    <span>&#128065; 2,345</span>
                    <span>&#11088; 4.5</span>
                </div>
            </div>

            <div class="thread">
                <div class="thread-top">
                    <div class="thread-title-row">
                        <div class="thread-title">
                            [ПОКУПКА] Ищу бизнес в центре города
                            <span class="thread-badge badge-new">&#10024; Новое</span>
                        </div>
                        <div class="thread-author">Автор: <strong>Businessman</strong></div>
                    </div>
                    <div class="thread-last-post">
                        <div class="last-post-avatar">S</div>
                        <div class="last-post-info">
                            <div class="last-post-user">Seller_Pro</div>
                            <div class="last-post-time">1 час назад</div>
                        </div>
                    </div>
                </div>
                <div class="thread-stats">
                    <span>&#128172; 23</span>
                    <span>&#128065; 891</span>
                    <span>&#11088; 4.3</span>
                </div>
            </div>
        </div>
    </div>

    <div class="watermark">ГОСС Yakubov © 2024</div>
</body>
</html>
            </div>
        </div>
    </div>

    <div class="watermark">ГОСС Yakubov © 2024</div>
</body>
</html>