* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 25%, #667eea 75%, #764ba2 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Анимированный фон */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 48, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(120, 219, 226, 0.3) 0%, transparent 50%);
            animation: backgroundMove 20s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes backgroundMove {
            0%, 100% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(-20px) translateY(-10px); }
            50% { transform: translateX(20px) translateY(-20px); }
            75% { transform: translateX(-10px) translateY(10px); }
        }

        /* Основная структура */
        #page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .page_inner {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .wrap, .wrap_2 {
            max-width: min(1400px, 95vw);
            margin: 0 auto;
            padding: 0 max(20px, 2vw);
        }

        /* Хедер с улучшенным дизайном */
        header {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: max(15px, 2vw) 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: clamp(15px, 3vw, 30px);
        }

        .logo {
            flex-shrink: 0;
        }

        .logo img {
            height: clamp(35px, 6vw, 50px);
            width: auto;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
        }

        /* Современное меню */
        .menu-main {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .menu-main ul {
            list-style: none;
            display: flex;
            gap: clamp(5px, 1vw, 15px);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 12px 20px;
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .menu-main a {
            padding: clamp(10px, 1.5vw, 14px) clamp(15px, 2.5vw, 25px);
            border-radius: 18px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: clamp(13px, 2vw, 16px);
            font-weight: 600;
            color: #fff;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .menu-main a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .menu-main a:hover::before {
            left: 100%;
        }

        .menu-main a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        /* Специальные кнопки меню */
        .link-aviator {
            background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4) !important;
            animation: glow-aviator 3s ease-in-out infinite alternate;
        }

        .link-aviator:hover {
            background: linear-gradient(135deg, #ff8c42, #ffa726) !important;
            box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6) !important;
        }

        @keyframes glow-aviator {
            from { box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4); }
            to { box-shadow: 0 6px 20px rgba(255, 107, 53, 0.7); }
        }

        .link-bonus {
            background: linear-gradient(135deg, #4ecdc4, #44a08d) !important;
            box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4) !important;
            animation: glow-bonus 3s ease-in-out infinite alternate;
        }

        .link-bonus:hover {
            background: linear-gradient(135deg, #5fd3cc, #52b7a8) !important;
            box-shadow: 0 6px 25px rgba(78, 205, 196, 0.6) !important;
        }

        @keyframes glow-bonus {
            from { box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4); }
            to { box-shadow: 0 6px 20px rgba(78, 205, 196, 0.7); }
        }

        /* Современные кнопки в хедере */
        .head-top-left {
            display: flex;
            gap: clamp(8px, 1.5vw, 15px);
            align-items: center;
        }

        .head-top-left a {
            padding: clamp(10px, 1.5vw, 14px) clamp(20px, 3vw, 30px);
            border-radius: 25px;
            font-weight: 600;
            font-size: clamp(13px, 2vw, 16px);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .btn-register {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: #fff;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .btn-register:hover {
            background: linear-gradient(135deg, #ff8c42, #ffa726);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
        }

        .btn-login {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .btn-login:hover {
            background: linear-gradient(135deg, #7c8ef0, #8a5cb8);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
        }

        /* Основной контент */
        .main {
            flex: 1;
            padding: clamp(30px, 5vw, 60px) 0;
        }

        .content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: clamp(20px, 3vw, 30px);
            padding: clamp(30px, 5vw, 60px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
        }

        /* Типография */
        h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            background: linear-gradient(135deg, #2c3e50, #3498db);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: clamp(30px, 4vw, 50px);
            text-align: center;
            line-height: 1.2;
            position: relative;
        }

        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            font-weight: 700;
            color: #2c3e50;
            margin: clamp(40px, 5vw, 60px) 0 clamp(20px, 3vw, 30px);
            padding-bottom: 15px;
            border-bottom: 3px solid;
            border-image: linear-gradient(90deg, #3498db, #667eea) 1;
            position: relative;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #ff6b35, #f7931e);
            border-radius: 2px;
        }

        p {
            margin-bottom: clamp(15px, 2.5vw, 20px);
            font-size: clamp(15px, 2.2vw, 18px);
            line-height: 1.8;
            color: #444;
        }

        strong {
            color: #2c3e50;
            font-weight: 700;
        }

        /* Улучшенные основные кнопки */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: clamp(15px, 2.5vw, 20px) clamp(30px, 5vw, 50px);
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 700;
            font-size: clamp(16px, 2.5vw, 20px);
            text-decoration: none;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: #fff;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
            background: linear-gradient(135deg, #ff8c42, #ffa726);
        }

        /* Изображения */
        .image {
            text-align: center;
            margin: clamp(30px, 4vw, 40px) 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .image img {
            max-width: 100%;
            height: auto;
            transition: transform 0.5s ease;
            border-radius: 20px;
        }

        .image:hover img {
            transform: scale(1.05);
        }

        /* Таблицы */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: clamp(30px, 4vw, 40px) 0;
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        th, td {
            padding: clamp(12px, 2vw, 18px);
            text-align: left;
            border-bottom: 1px solid #ecf0f1;
            font-size: clamp(14px, 2vw, 16px);
        }

        th {
            background: linear-gradient(135deg, #3498db, #667eea);
            color: #fff;
            font-weight: 700;
        }

        tr:hover {
            background: linear-gradient(90deg, #f8f9fa, #fff);
        }

        /* Всплывающее окно */
        .promo-popup {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: min(350px, calc(100vw - 40px));
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            transform: translateX(100%);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .promo-popup.show {
            transform: translateX(0);
            opacity: 1;
        }

        .popup-header {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            padding: 20px;
            position: relative;
        }

        .popup-header h3 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .popup-header p {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 0;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .popup-content {
            padding: 25px;
            text-align: center;
        }

        .promo-code {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            border-radius: 15px;
            margin: 20px 0;
            border: 2px dashed rgba(255, 255, 255, 0.3);
            position: relative;
            cursor: pointer;
            transition: all 0.3s;
        }

        .promo-code:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .promo-code .code {
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 8px;
            letter-spacing: 3px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .promo-code .description {
            font-size: 12px;
            opacity: 0.9;
        }

        .copy-btn {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 15px;
            font-size: 14px;
            width: 100%;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }

        .copy-btn:hover {
            background: linear-gradient(135deg, #ff8c42, #ffa726);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
        }

        .bonus-info {
            font-size: 14px;
            color: #666;
            margin-top: 20px;
            line-height: 1.6;
        }

        .bonus-info strong {
            color: #ff6b35;
            font-size: 16px;
        }

        .copied-indicator {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: #22c55e;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            opacity: 0;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
        }

        .copied-indicator.show {
            opacity: 1;
            transform: translateX(-50%) translateY(-10px);
        }

        /* Футер */
        footer {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 30px 0;
            margin-top: auto;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .copy {
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        /* Адаптивность */
        @media (max-width: 1350px) {
            .head-top-left a {
                display: none;
            }
        }

        @media (max-width: 1200px) {
            .menu-main ul {
                gap: 8px;
                padding: 10px 15px;
            }
            
            .menu-main a {
                padding: 8px 12px;
                font-size: 14px;
            }
        }

        @media (max-width: 992px) {
            .logo {
                margin: 0 auto;
            }

            .head {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .head-top-left {
                order: 2;
                width: 100%;
                justify-content: center;
                margin-top: 15px;
            }
        }

        @media (max-width: 768px) {
            .head-top-left {
                flex-direction: column;
                gap: 10px;
            }
            
            .head-top-left a {
                width: 200px;
                text-align: center;
            }
            
            .promo-popup {
                width: calc(100vw - 20px);
                left: 10px;
                right: 10px;
                bottom: 10px;
            }
        }


        @media (max-width: 630px) {
            .menu-main {
                display: none;
            }

            .logo {
                margin-top: 20px;
                margin-bottom: 0px;
            }
        }

        @media (max-width: 480px) {
            .content {
                padding: 20px;
                border-radius: 15px;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.3rem;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
            
            table {
                font-size: 12px;
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }
        }

        /* Анимации входа */
        .content {
            animation: slideUp 0.8s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        header {
            animation: slideDown 0.6s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }