/* Общие стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #0a0a1a;
            color: #e0e0ff;
            min-height: 100vh;
        }
        
        /* Неоновая навигационная панель */
        .neon-navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 40px;
            background: rgba(10, 10, 30, 0.8);
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
            position: relative;
            border-bottom: 1px solid rgba(0, 255, 255, 0.2);
        }
        
        /* Логотип и название */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.7));
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(90deg, #0ff, #f0f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
            letter-spacing: 1px;
        }
        
        /* Меню навигации */
        .nav-menu {
            display: flex;
            gap: 25px;
        }
        
        .nav-item {
            position: relative;
            list-style: none;
        }
        
        .nav-link {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 8px 15px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        /* Эффекты при наведении */
        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
            z-index: -1;
            border-radius: 5px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .nav-link:hover {
            color: #0ff;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
        }
        
        .nav-link:hover::before {
            opacity: 1;
        }
        
        /* Активный пункт меню */
        .nav-item.active .nav-link {
            color: #0ff;
            font-weight: bold;
        }
        
        .nav-item.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 15px;
            right: 15px;
            height: 2px;
            background: #0ff;
            box-shadow: 0 0 10px #0ff;
            animation: neonPulse 1.5s infinite alternate;
        }
        
        /* Анимации */
        @keyframes neonPulse {
            from {
                opacity: 0.7;
                box-shadow: 0 0 5px #0ff;
            }
            to {
                opacity: 1;
                box-shadow: 0 0 20px #0ff;
            }
        }
        
        /* Эффект для всей навигации */
        
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .neon-navbar {
                flex-direction: column;
                padding: 15px;
            }
            
            .logo-container {
                margin-bottom: 15px;
            }
            
            .nav-menu {
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
            }
            
            .nav-link {
                padding: 5px 10px;
                font-size: 14px;
            }
        }
        
        /* Неоновый контейнер */
        .container {
            max-width: 800px;
            width: 100%;
            background: rgba(20, 20, 50, 0.7);
            border-radius: 15px;
            border: 1px solid #4d00ff;
            box-shadow: 0 0 20px rgba(77, 0, 255, 0.7),
                        inset 0 0 15px rgba(0, 255, 255, 0.3);
            overflow: hidden;
            animation: fadeIn 0.8s ease-out;
            margin: 40px auto;
            backdrop-filter: blur(5px);
        }
        
        .header {
            background: linear-gradient(90deg, rgba(44, 0, 80, 0.7) 0%, rgba(74, 0, 145, 0.7) 100%);
            color: white;
            padding-top: 30px;
            padding-bottom: 30px;
            text-align: center;
            border-bottom: 1px solid #00ffff;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
        }
        
        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #00ffff;
            text-shadow: 0 0 10px #00ffff;
        }
        
        .header p {
            font-size: 1.1rem;
            color: #ff00ff;
            text-shadow: 0 0 5px #ff00ff;
        }
        
        .content {
            padding: 40px;
        }
        
        .features {
            display: flex;
            justify-content: space-between;
            margin: 30px 0;
            flex-wrap: wrap;
            text-decoration: none;
        }
        
        .feature {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 25px 20px;
            margin: 10px;
            background: rgba(30, 30, 70, 0.5);
            border-radius: 10px;
            transition: all 0.3s;
            border: 1px solid #4d00ff;
            box-shadow: 0 0 10px rgba(77, 0, 255, 0.3);
        }
        
        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 255, 255, 0.5);
            border-color: #00ffff;
        }
        
        .feature i {
            color: #00ffff;
            margin-bottom: 15px;
            display: block;
            text-shadow: 0 0 10px #00ffff;
        }
        
        .feature a {
            color: #ff00ff;
            text-shadow: 0 0 5px #ff00ff;
             text-decoration: none;
           
        }
        
        .quote {
            font-style: italic;
            text-align: center;
            margin-top: 30px;
            color: #a0a0ff;
            font-size: 1.1rem;
            text-shadow: 0 0 5px #a0a0ff;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Анимация пульсации для неона */
        @keyframes pulse {
            0% { opacity: 0.7; }
            50% { opacity: 1; }
            100% { opacity: 0.7; }
        }
        
        .neon-pulse {
            animation: pulse 2s infinite;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
                flex-direction: column;
                gap: 15px;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .features {
                flex-direction: column;
            }
            
            .content {
                padding: 30px 20px;
            }
        }

            .line{
            height: 4px;
            width: 100%;
            background: linear-gradient(90deg, 
                rgba(255, 0, 0, 1) 0%, 
                rgba(255, 98, 0, 1) 11%, 
                rgba(255, 234, 0, 1) 23%, 
                rgba(0, 255, 34, 1) 34%,
                rgba(0, 251, 255, 1) 47%, 
                rgba(0, 132, 255, 1) 58%, 
                rgba(21, 0, 255, 1) 69%, 
                rgba(153, 0, 255, 1) 77%, 
                rgba(205, 65, 168, 1) 90%, 
                rgba(255, 0, 77, 1) 100%);
            background-size: 200% 100%; 
            animation: animate 5s linear infinite;
        }

        @keyframes animate {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

 /* футер */
 
footer {
            background-color: var(--dark-bg);
            color: #fff;
            padding: 40px 0 20px;
            font-family: 'Arial', sans-serif;
            border-top: 1px solid rgba(0, 255, 255, 0.2);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 0 20px;
        }
        
        .footer-section {
            padding: 15px;
        }
        
        .footer-title {
            color: #00ffff;
            font-size: 18px;
            margin-bottom: 20px;
            text-shadow: 0 0 10px #00ffff;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-title:before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            height: calc(100% - 10px);
            width: 3px;
            background: #00ffff;
            border-radius: 3px;
            box-shadow: 0 0 10px #00ffff;
        }
      .footer-logo {
            font-weight: bold;
            color: #00ffff;
            text-shadow: 0 0 10px #00ffff;
        }
        
        .footer-text {
            color: #fff;
            line-height: 1.6;
            margin-bottom: 15px;
            transition: all 0.3s;
            display: block;
        }
        
        a.footer-text:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
        }
        
        .social-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .social-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
            
        }
        
        .social-btn img {
            width: 24px;
            height: 24px;
        }
        
        .whatsapp-btn {
            background-color: #25D366;
        }
        
        .telegram-btn {
            background-color: #0088cc;
        }
        
        .vk-btn {
            background-color: #4C75A3;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .footer-link {
            color: #ff00ff;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-link:hover {
            color: var(--neon-blue);
           
          text-shadow: 0 0 10px #ffffff;
            transform: translateX(5px);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 255, 255, 0.2);
            font-size: 14px;
            color: #7e7ecc;
        }
        
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
        }



















 

