    <style>
        /* ==========================================================================
           2. СТИЛИ И ГЛОБАЛЬНЫЙ ДИЗАЙН (APPLE GLASSMORPHISM)
           ========================================================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: #08090d;
            background: radial-gradient(circle at 50% 0%, #1e1610 0%, #08090d 100%);
            color: #f8fafc;
            min-height: 100vh;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            line-height: 1.6;
        }

        /* Основной контейнер сетки */
        .container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Шапка проекта */
        header {
            padding: 32px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo-section {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .logo-title {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo-subtitle {
            font-size: 12px;
            color: #71717a;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .header-widgets {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        /* Виджет копирования IP сервера */
        .ip-widget {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.02);
            padding: 8px 16px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .ip-widget:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.12);
        }

        .ip-text {
            font-size: 13px;
            font-weight: 600;
            color: #e4e4e7;
        }

        .ip-label {
            font-size: 11px;
            background: #f97316;
            color: #fff;
            padding: 2px 6px;
            border-radius: 6px;
            font-weight: 700;
        }

        /* Онлайн-индикатор */
        .online-counter {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.02);
            padding: 8px 16px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(8px);
        }

        .online-pulse-dot {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            box-shadow: 0 0 12px #22c55e;
            animation: pulseGlow 2s infinite;
        }

        @keyframes pulseGlow {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
        }

        .online-count-text {
            font-size: 14px;
            font-weight: 500;
            color: #f4f4f5;
        }

        /* Панель категорий (Вкладки) */
        .categories-container {
            margin: 48px 0 24px 0;
            display: flex;
            gap: 8px;
            background: rgba(255, 255, 255, 0.01);
            padding: 6px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            width: fit-content;
        }

        .category-tab-btn {
            background: transparent;
            border: none;
            color: #71717a;
            padding: 12px 26px;
            font-size: 15px;
            font-weight: 500;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .category-tab-btn:hover {
            color: #e4e4e7;
        }

        .category-tab-btn.active {
            background: rgba(255, 255, 255, 0.06);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* Главная двухколоночная рабочая сетка */
        .shop-work-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 32px;
            margin-bottom: 80px;
        }

        @media (max-width: 992px) {
            .shop-work-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Общие стили размытых стеклянных панелей */
        .glass-card-panel {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 36px;
            box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
            transition: border-color 0.4s ease, box-shadow 0.4s ease;
        }

        /* Элементы форм ввода */
        .input-block-group {
            margin-bottom: 28px;
        }

        .input-block-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: #a1a1aa;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .text-input-ctrl {
            width: 100%;
            background: rgba(0, 0, 0, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 14px;
            padding: 16px;
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.25s ease;
        }

        .text-input-ctrl:focus {
            outline: none;
            border-color: rgba(249, 115, 22, 0.4);
            box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
            background: rgba(0, 0, 0, 0.35);
        }

        /* Список-сетка товаров внутри формы */
        .products-grid-viewport {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 16px;
            margin-top: 12px;
            max-height: 360px;
            overflow-y: auto;
            padding-right: 6px;
        }

        /* Кастомизация полосы прокрутки внутри контейнера товаров */
        .products-grid-viewport::-webkit-scrollbar {
            width: 6px;
        }
        .products-grid-viewport::-webkit-scrollbar-track {
            background: transparent;
        }
        .products-grid-viewport::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
        }
        .products-grid-viewport::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        /* Карточка единичного товара */
        .product-card-node {
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 18px;
            padding: 20px 16px;
            text-align: center;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .product-card-node:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.12);
        }

        .product-card-node.selected {
            background: rgba(255, 255, 255, 0.02);
            border-color: var(--theme-color, #f97316);
            box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.01);
        }

        .product-icon-shape {
            width: 40px;
            height: 40px;
            margin: 0 auto 12px auto;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--theme-color, #fff);
            border: 1px solid rgba(255, 255, 255, 0.04);
            transition: all 0.25s ease;
        }

        .product-card-node.selected .product-icon-shape {
            background: var(--theme-color, #f97316);
            color: #000;
            box-shadow: 0 0 15px var(--theme-color, #f97316);
            border-color: transparent;
        }

        .product-card-node h3 {
            font-size: 16px;
            font-weight: 600;
            color: #f4f4f5;
            margin-bottom: 6px;
        }

        .product-card-node .price-tag {
            font-size: 14px;
            color: #a1a1aa;
            font-weight: 500;
        }

        /* Правая колонка: Детальная информационная карточка */
        .info-panel-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding-bottom: 24px;
            margin-bottom: 28px;
        }

        .product-meta-title h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 4px;
            color: #fff;
        }

        .product-meta-title span {
            font-size: 14px;
            color: #a1a1aa;
            font-weight: 500;
        }

        .product-meta-price {
            text-align: right;
        }

        .dynamic-price-value {
            font-size: 34px;
            font-weight: 700;
            color: #f97316;
            line-height: 1;
            transition: color 0.3s ease;
        }

        .price-sub-label {
            font-size: 12px;
            color: #52525b;
            text-transform: uppercase;
            font-weight: 600;
            margin-top: 4px;
            letter-spacing: 0.5px;
        }

        /* Списки преимуществ */
        .perks-list-wrapper h4 {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: #71717a;
            margin-bottom: 18px;
            font-weight: 600;
        }

        .perks-items-stack {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .perk-item-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.01);
            padding: 14px 18px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.03);
            animation: fadeInRow 0.3s ease forwards;
        }

        @keyframes fadeInRow {
            from { opacity: 0; transform: translateY(4px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .perk-title-text {
            font-size: 15px;
            font-weight: 500;
            color: #e4e4e7;
        }

        .perk-cmd-badge {
            font-size: 12px;
            font-family: monospace;
            background: rgba(0, 0, 0, 0.35);
            padding: 4px 10px;
            border-radius: 8px;
            color: #f43f5e;
            border: 1px solid rgba(255, 255, 255, 0.04);
            font-weight: bold;
        }

        /* Кнопка отправки на шлюз */
        .gateway-submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
            border: none;
            border-radius: 16px;
            padding: 18px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            margin-top: 36px;
            box-shadow: 0 4px 25px rgba(234, 88, 12, 0.25);
        }

        .gateway-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(234, 88, 12, 0.4);
            filter: brightness(1.1);
        }

        /* Стилизованные модальные окна (Вместо стандартных алертов) */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 6, 8, 0.8);
            backdrop-filter: blur(12px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-body {
            background: #0f1115;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 32px;
            max-width: 420px;
            width: 100%;
            text-align: center;
            transform: scale(0.9);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
        }

        .modal-overlay.active .modal-body {
            transform: scale(1);
        }

        .modal-status-icon {
            width: 56px;
            height: 56px;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.2);
            color: #ef4444;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin: 0 auto 20px auto;
            font-weight: bold;
        }

        .modal-title {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .modal-desc {
            font-size: 14px;
            color: #a1a1aa;
            line-height: 1.5;
            margin-bottom: 24px;
        }

        .modal-close-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 12px 24px;
            border-radius: 12px;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .modal-close-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.15);
        }

        /* Подвал */
        footer {
            margin-top: auto;
            padding: 48px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            font-size: 13px;
            color: #52525b;
        }
   @font-face {
    font-family: 'MinecraftFont'; /* Название, под которым будем использовать шрифт */
    src: url('fonts/minecraft.ttf') format('truetype'); /* Путь к файлу */
    font-weight: normal;
    font-style: normal;
}
body {
    /* Меняем font-family на наше название */
    font-family: 'MinecraftFont', sans-serif; 
    /* ... остальные стили ... */
}
        /* ==========================================================================
        2. АРХИТЕКТУРНАЯ СПЕЦИФИКАЦИЯ UI И КАСТОМНЫЕ ПАРАМЕТРЫ СТИЛИЗАЦИИ
        ========================================================================== */
        /* Данный CSS-блок расширяет возможности кастомизации интерфейса, внедряя */
        /* плавные переходы, кастомные скроллбары и адаптивные структуры без изменения */
        /* оригинального дизайн-кода и стилистики вашего шаблона. */
        /* ========================================================================== */

        /* Высокотехнологичный виджет интерактивной ленты «Последние покупки» */
        .live-purchases-container {
            width: 100%;
            margin-bottom: 24px;
            box-sizing: border-box;
        }

        .live-purchases-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            padding: 0 4px;
        }

        .live-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.2);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            color: #ef4444;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .live-dot-pulse {
            width: 6px;
            height: 6px;
            background-color: #ef4444;
            border-radius: 50%;
            position: relative;
        }

        .live-dot-pulse::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0; left: 0;
            background-color: #ef4444;
            border-radius: 50%;
            animation: livePulse 1.8s infinite ease-in-out;
        }

        @keyframes livePulse {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(3); opacity: 0; }
        }

        .live-purchases-title {
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
            letter-spacing: 0.3px;
        }

        .live-purchases-viewport {
            width: 100%;
            overflow-x: auto;
            display: flex;
            gap: 12px;
            padding: 4px 4px 12px 4px;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        /* Тонкий скроллбар для ленты покупок */
        .live-purchases-viewport::-webkit-scrollbar {
            height: 4px;
        }
        .live-purchases-viewport::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.01);
            border-radius: 10px;
        }
        .live-purchases-viewport::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.06);
            border-radius: 10px;
        }
        .live-purchases-viewport::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .purchase-live-card {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 16px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 14px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-sizing: border-box;
            position: relative;
            overflow: hidden;
            animation: purchaseCardAppear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
            transition: all 0.25s ease;
        }

        .purchase-live-card:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        @keyframes purchaseCardAppear {
            0% { opacity: 0; transform: scale(0.9) translateX(-15px); }
            100% { opacity: 1; transform: scale(1) translateX(0); }
        }

        .purchase-live-avatar {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .purchase-live-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .purchase-live-info {
            display: flex;
            flex-direction: column;
            gap: 1px;
            text-align: left;
        }

        .purchase-live-user {
            font-size: 13px;
            font-weight: 700;
            color: #f8fafc;
            line-height: 1.2;
        }

        .purchase-live-item-box {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

        .purchase-live-item-name {
            font-weight: 600;
            color: var(--badge-color);
            text-shadow: 0 0 10px var(--badge-color-glow);
        }

        /* Системные оверлеи модальных окон */
        .modal-overlay {
            transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
        }
        
        .modal-overlay.active, #payment-modal.modal-visible {
            opacity: 1 !important;
            visibility: visible !important;
            display: flex !important;
            pointer-events: auto !important; /* Гарантия того, что клики не будут проходить насквозь */
            z-index: 99999 !important;
        }
        
        /* Исправление отображения инпутов и предотвращение их вылета за границы */
        .text-input-ctrl {
            width: 100% !important;
            box-sizing: border-box !important;
        }

        /* Плавная анимация масштабирования для модального окна оплаты */
        #payment-modal .modal-body {
            transform: scale(0.93);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        #payment-modal.modal-visible .modal-body {
            transform: scale(1);
        }
        
        .modal-input-group {
            margin-top: 16px;
            text-align: left;
            width: 100%;
            box-sizing: border-box;
        }
        
        .modal-input-group label {
            display: block;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 6px;
            font-weight: 500;
            letter-spacing: 0.2px;
        }
        
        .modal-actions {
            margin-top: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
        
        .modal-pay-btn {
            width: 100% !important;
            margin-bottom: 10px;
        }

        /* Организация бесконфликтного вертикального списка товаров */
        #products-list-wrapper {
            display: flex !important;
            flex-direction: column !important;
            gap: 12px !important;
            max-height: 560px;
            overflow-y: auto;
            padding-right: 6px;
            box-sizing: border-box;
        }

        /* Высокотехнологичный тонкий скроллбар списка товаров в стиле Apple macOS */
        #products-list-wrapper::-webkit-scrollbar {
            width: 6px;
        }
        
        #products-list-wrapper::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.01);
            border-radius: 10px;
        }
        
        #products-list-wrapper::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
        }
        
        #products-list-wrapper::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.18);
        }

        /* Архитектура интерактивной строки товара (взамен старых карточек) */
        .product-card-node {
            width: 100% !important;
            min-height: auto !important;
            height: auto !important;
            display: none; /* Скрыты по умолчанию, управляются динамически через JS */
            align-items: center !important;
            justify-content: space-between !important;
            padding: 14px 18px !important;
            background: rgba(255, 255, 255, 0.02) !important;
            border: 1px solid rgba(255, 255, 255, 0.05) !important;
            border-radius: 14px !important;
            cursor: pointer;
            transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
            box-sizing: border-box;
            position: relative;
        }

        /* Класс-модификатор видимости товара при совпадении хэша активной категории */
        .product-card-node.active-product {
            display: flex !important;
        }

        /* Левый структурированный блок строки товара */
        .product-card-left-side {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        /* Геометрическая фигура-контейнер иконки товара */
        .product-card-node .product-icon-shape {
            margin: 0 !important;
            width: 42px !important;
            height: 42px !important;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--theme-color);
            text-shadow: 0 0 12px var(--theme-color);
            transition: all 0.25s ease;
            overflow: hidden;
        }

        /* Растровая адаптивная картинка внутри иконки */
        .product-card-node .product-icon-shape img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Текстовые метаданные внутри карточки-строки */
        .product-card-meta-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
            text-align: left;
        }

        .product-card-node h3 {
            margin: 0 !important;
            font-size: 16px !important;
            font-weight: 600 !important;
            color: #f8fafc !important;
            line-height: 1.2;
        }

        .product-card-custom-sub {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 400;
        }

        /* Визуальный ценник позиции товара */
        .product-card-node .price-tag {
            margin: 0 !important;
            font-size: 15px !important;
            font-weight: 700 !important;
            background: rgba(255, 255, 255, 0.04);
            padding: 6px 14px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.07);
            color: #ffffff !important;
            transition: all 0.25s ease;
        }

        /* Интерактивные ховер-состояния элементов каталога */
        .product-card-node:hover {
            background: rgba(255, 255, 255, 0.05) !important;
            border-color: rgba(255, 255, 255, 0.12) !important;
            transform: translateX(5px);
        }

        /* Фокусное состояние выбранного пользователем товара */
        .product-card-node.selected {
            background: rgba(255, 255, 255, 0.06) !important;
            border-color: var(--theme-color) !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 0 10px rgba(255, 255, 255, 0.02);
        }

        .product-card-node.selected .product-icon-shape {
            background: var(--theme-color);
            color: #0b0c10;
            text-shadow: none;
            border-color: transparent;
        }

        .product-card-node.selected .price-tag {
            background: var(--theme-color);
            color: #0b0c10 !important;
            border-color: transparent;
        }

        /* Навигационная сетка ссылок сообществ в подвале */
        .footer-social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 16px;
            margin: 10px auto 32px auto;
            width: 100%;
            max-width: 760px;
            box-sizing: border-box;
        }

        .social-link-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 16px;
            text-decoration: none;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
        }

        .social-link-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .social-link-card:hover::before {
            transform: translateX(100%);
        }

        .social-icon-wrapper {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .social-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
            text-align: left;
        }

        .social-title {
            color: #f1f5f9;
            font-size: 15px;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .social-subtitle {
            color: rgba(255, 255, 255, 0.38);
            font-size: 12px;
            font-weight: 400;
        }

        /* Интеграция стилей для карточки Telegram */
        .social-link-card.tg-card .social-icon-wrapper {
            background: rgba(0, 136, 204, 0.06);
            color: #0088cc;
            border: 1px solid rgba(0, 136, 204, 0.15);
            text-shadow: 0 0 10px rgba(0, 136, 204, 0.3);
        }

        .social-link-card.tg-card:hover {
            border-color: rgba(0, 136, 204, 0.35);
            background: rgba(0, 136, 204, 0.02);
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25), 0 0 20px rgba(0, 136, 204, 0.08);
        }

        .social-link-card.tg-card:hover .social-icon-wrapper {
            background: #0088cc;
            color: #ffffff;
            border-color: transparent;
            text-shadow: none;
            box-shadow: 0 0 15px rgba(0, 136, 204, 0.4);
        }

        /* Интеграция стилей для карточки VK */
        .social-link-card.vk-card .social-icon-wrapper {
            background: rgba(0, 119, 255, 0.06);
            color: #0077ff;
            border: 1px solid rgba(0, 119, 255, 0.15);
            text-shadow: 0 0 10px rgba(0, 119, 255, 0.3);
        }

        .social-link-card.vk-card:hover {
            border-color: rgba(0, 119, 255, 0.35);
            background: rgba(0, 119, 255, 0.02);
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25), 0 0 20px rgba(0, 119, 255, 0.08);
        }

        .social-link-card.vk-card:hover .social-icon-wrapper {
            background: #0077ff;
            color: #ffffff;
            border-color: transparent;
            text-shadow: none;
            box-shadow: 0 0 15px rgba(0, 119, 255, 0.4);
        }

        /* Компоненты виджета Информационного Форума NightLeaks в шапке */
        .forum-widget-link {
            text-decoration: none !important;
            display: block;
        }

        .forum-widget-node {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.03) !important;
            border: 1px solid rgba(255, 255, 255, 0.05) !important;
            padding: 8px 16px !important;
            border-radius: 12px !important;
            cursor: pointer;
            transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .forum-widget-node .forum-widget-title {
            font-size: 13px !important;
            font-weight: 600 !important;
            color: rgba(255, 255, 255, 0.85) !important;
            letter-spacing: 0.2px;
        }

        .forum-widget-node .forum-widget-badge {
            font-size: 10px !important;
            font-weight: 700 !important;
            background: #a855f7 !important;
            color: #ffffff !important;
            padding: 3px 8px !important;
            border-radius: 6px !important;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 0 2px 8px rgba(168, 85, 247, 0.3);
            transition: all 0.25s ease;
        }

        .forum-widget-node:hover {
            background: rgba(255, 255, 255, 0.06) !important;
            border-color: rgba(168, 85, 247, 0.4) !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(168, 85, 247, 0.12);
        }

        .forum-widget-node:hover .forum-widget-badge {
            background: #b55fe6 !important;
            box-shadow: 0 4px 12px rgba(168, 85, 247, 0.5);
        }

        /* Высокотехнологичные стили для контейнера технического экрана блокировки */
        .maintenance-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 65vh;
            width: 100%;
            box-sizing: border-box;
        }
        
        .maintenance-card {
            max-width: 550px;
            width: 100%;
            text-align: center;
            padding: 40px 30px !important;
            box-sizing: border-box;
        }
        
        .maintenance-icon {
            font-size: 48px;
            color: #a855f7;
            text-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
            margin-bottom: 20px;
            display: inline-block;
            animation: pulse-gear 2.5s infinite ease-in-out;
        }
        
        @keyframes pulse-gear {
            0% { transform: scale(1) rotate(0deg); opacity: 0.9; }
            50% { transform: scale(1.05) rotate(180deg); opacity: 1; text-shadow: 0 0 30px rgba(168, 85, 247, 0.6); }
            100% { transform: scale(1) rotate(360deg); opacity: 0.9; }
        }
                /* Базовое позиционирование вспомогательных компонентов окон */
        .modal-overlay {
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .modal-input-group {
            margin-bottom: 16px;
            text-align: left;
        }
        
        .modal-input-group label {
            display: block;
            margin-bottom: 6px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
            font-weight: 500;
        }
        
        /* Дополнительное описание полей внутри контейнеров */
        .modal-input-group .text-input-ctrl {
            width: 100%;
            box-sizing: border-box;
        }

        /* Интерактивные ссылки документов с эффектами дизайна в подвале */
        .footer-legal-links {
            margin-top: 25px;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .footer-legal-link-node {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .footer-legal-link-node:hover {
            color: #a855f7;
            text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
        }

        /* Блок копирайта и данные разработчика проекта */
        .footer-copyright-text {
            margin-top: 20px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .footer-developer-signature {
            margin-top: 10px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .footer-developer-signature-link {
            color: #f97316;
            font-weight: 600;
            text-shadow: 0 0 8px rgba(249, 115, 22, 0.4);
            text-decoration: none;
        }

        .footer-animated-heart {
            color: #ef4444;
            display: inline-block;
            filter: drop-shadow(0 0 5px rgba(239, 68, 68, 0.6));
            animation: heartPulseAnimation 1.5s infinite;
            font-size: 14px;
        }

        /* Анимационные дескрипторы для интерфейса шлюза */
        @keyframes heartPulseAnimation {
            0% { transform: scale(1); }
            30% { transform: scale(1.15); }
            60% { transform: scale(1); }
            80% { transform: scale(1.15); }
            100% { transform: scale(1); }
        }

        /* Дополнительные вспомогательные декларации разметки сетки */
        .perks-items-stack {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .perk-item-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 14px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 10px;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            animation: fadeInUp 0.4s ease forwards;
            opacity: 0;
            transform: translateY(10px);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .perk-title-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
            text-align: left;
        }

        .perk-cmd-badge {
            font-family: 'Courier New', Courier, monospace;
            font-size: 11px;
            background: rgba(255, 255, 255, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
            color: #a855f7;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* ================================================================================= */
        /* СТИЛИ ОФЛАЙН СОСТОЯНИЯ ИНДИКАТОРА ОНЛАЙНА (КРАСНЫЙ APPLE GLASS СТИЛЬ)             */
        /* ================================================================================= */
        
        /* Модификатор основного контейнера при недоступности сервера */
        .online-counter.server-offline-state {
            background: rgba(239, 68, 68, 0.06) !important;
            border: 1px solid rgba(239, 68, 68, 0.2) !important;
            box-shadow: 0 4px 15px rgba(239, 68, 68, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.05) !important;
        }

        /* Переключение цвета мигающей точки на системный красный */
        .online-counter.server-offline-state .online-pulse-dot {
            background: #ef4444 !important;
            box-shadow: 0 0 10px rgba(239, 68, 68, 0.8) !important;
            animation: offlinePulseAnimation 2s infinite !important;
        }

        /* Изменение цвета текста уведомления */
        .online-counter.server-offline-state .online-count-text {
            color: rgba(239, 68, 68, 0.95) !important;
            font-weight: 600 !important;
        }

        /* Специфическая анимация пульсации для критического состояния */
        @keyframes offlinePulseAnimation {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
            }
            70% {
                transform: scale(1);
                box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
            }
        }

        /* ================================================================================= */
        /* ИНТЕГРАЦИЯ ВЫСОКОПРОИЗВОДИТЕЛЬНОГО ЭМБИЕНТ-ХОСТА ДЛЯ ЗАДНЕГО ПЛАНА               */
        /* ================================================================================= */
        .ambient-canvas-host {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -2;
            pointer-events: none;
            display: block;
            background: transparent;
        }

        /* Контейнер ручного переключателя времен года в футере сайта */
        .season-controller-box {
            margin-top: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
        }

        .season-badge-toggle {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 5px 12px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            cursor: pointer;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .season-badge-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.9);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .season-badge-toggle.active-season-summer {
            background: rgba(234, 179, 8, 0.1);
            border-color: rgba(234, 179, 8, 0.3);
            color: #eab308;
            text-shadow: 0 0 8px rgba(234, 179, 8, 0.3);
        }

        .season-badge-toggle.active-season-autumn {
            background: rgba(249, 115, 22, 0.1);
            border-color: rgba(249, 115, 22, 0.3);
            color: #f97316;
            text-shadow: 0 0 8px rgba(249, 115, 22, 0.3);
        }
    </style>
