
        /* Основные стили страницы */
        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background: linear-gradient(135deg, #0a0a0ad1 0%, #2a5298 100%);
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }
		

		.logo-wrapper {
		  display: flex;
		  align-items: center;
		  justify-content: flex-start;
		  gap: 10px;
		  padding-left: 20px;
		  margin-bottom: 10px;
		}

		.manul-logo {
		  width: 40px;
		  height: 40px;
		  border-radius: 10px;
		  object-fit: cover;
		}

		.manul-text {
		  font-size: 1.8rem;
		  font-weight: 700;
		  color: #4CAF50;
		  font-family: 'Poppins', sans-serif;
		}
			/* Анимированный фон с пакетами */
        #packets {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .packet {
            position: absolute;
            width: 8px;
            height: 8px;
            background: #00d4ff;
            border-radius: 50%;
            animation: movePacket 5s linear infinite;
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }

        @keyframes movePacket {
            0% { transform: translateX(-50px); opacity: 0; }
            20% { opacity: 1; }
            80% { opacity: 1; }
            100% { transform: translateX(100vw); opacity: 0; }
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
            animation: pulse 15s infinite ease-in-out;
            z-index: -2;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        /* Хедер с динамическим эффектом */
        header {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            color: #fff;
            padding: 20px 0;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        header h1 {
            margin: 0;
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            animation: fadeInDown 0.5s ease-out;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Контейнер для контента */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Провокационный баннер */
        .banner {
            background: linear-gradient(45deg, #ff98000f, #ff1a1a);
            padding: 20px;
            text-align: center;
            border-radius: 12px;
            margin-bottom: 40px;
            animation: flash 2s infinite, glow 2s infinite;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .banner:hover {
            transform: perspective(1000px) rotateX(5deg);
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 20px rgba(255, 77, 77, 0.5); }
            50% { box-shadow: 0 0 30px rgba(255, 77, 77, 0.8); }
        }

        .banner h2 {
            font-size: 2rem;
            margin: 0;
            color: #fff;
            text-transform: uppercase;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .banner p {
            font-size: 1.2rem;
            color: #ffe6e6;
            margin: 10px 0;
        }

        .banner .highlight-text {
            font-size: 1.5rem;
            color: #e5e8ee;
            margin: 10px 0 0;
            font-weight: 600;
            text-shadow: 0 0 5px rgba(229, 232, 238, 0.5);
        }

        .banner .pornhub-logo {
            width: 250px;
            margin: 10px auto;
            display: block;
            animation: bounce 0.5s ease;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes flash {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        /* Таймер обратного отсчета */
        .countdown {
            text-align: center;
            margin: 40px 0;
            
            padding: 20px;
            border-radius: 12px;
            
            
        }

        .countdown h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #4CAF50;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .countdown #timer {
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
        }

        /* Геройская секция */
        .hero {
            background: url('https://images.unsplash.com/photo-1620641788421-7a1c342ea42e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            border-radius: 12px;
            padding: 60px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .hero h2, .hero p {
            position: relative;
            z-index: 2;
        }

        .hero h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            animation: fadeInUp 0.5s ease-out;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: #e0e0e0;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Стили для кнопки */
        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #4CAF50, #66BB6A);
            color: white;
            padding: 15px 30px;
            font-size: 1.2rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 2;
            max-width: 300px;
            width: 100%;
            box-sizing: border-box;
            margin: 0 auto;
            box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
        }

        .cta-button::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: 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* Попап */
        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.9);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            z-index: 2000;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            max-width: 400px;
            width: 90%;
        }

        .popup h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #4CAF50;
        }

        .popup p {
            font-size: 1.1rem;
            color: #e0e0e0;
            margin-bottom: 20px;
        }

        .popup .cta-button {
            background: linear-gradient(45deg, #0088cc, #33b5e5);
        }

        .popup-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 1.5rem;
            color: #fff;
            cursor: pointer;
        }

        /* Скоростной индикатор (Speedtest.net style) */
        .speed-indicator {
            text-align: center;
            margin: 40px 0;
            
            padding: 30px;
            border-radius: 12px;
            
            position: relative;
        }

        .speed-indicator h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .speed-meter {
            position: relative;
            width: 250px;
            height: 125px;
            margin: 0 auto;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 12px;
        }

        .speed-gauge {
            width: 100%;
            height: 100%;
        }

        .speed-gauge svg {
            width: 100%;
            height: 100%;
        }

        .speed-needle {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 4px;
            height: 70px;
            background: #4CAF50;
            border-radius: 2px;
            transform-origin: bottom;
            transform: rotate(-90deg);
            transition: transform 3s ease-in-out;
            box-shadow: 0 0 8px rgba(76, 175, 80, 0.8);
        }

        .speed-needle.active {
            transform: rotate(45deg);
        }

        .speed-needle.overshoot {
            animation: overshootVibration 0.5s ease-in-out 3;
        }

        @keyframes overshootVibration {
            0%, 100% { transform: rotate(45deg); }
            50% { transform: rotate(50deg); }
        }

        .speed-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: #4CAF50;
            margin-top: 15px;
            text-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
            animation: fadeInText 0.5s ease-in forwards;
        }

        @keyframes fadeInText {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Тикер социальной активности */
        .social-ticker {
            
            padding: 10px;
            border-radius: 8px;
            margin: 40px 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .ticker-content {
            display: inline-block;
            animation: ticker 20s linear infinite;
        }

        .ticker-content span {
            margin-right: 40px;
            font-size: 1.1rem;
            color: #4CAF50;
        }

        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        /* Функции VPN */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .feature {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            animation: fadeInFeature 0.5s ease forwards;
            animation-delay: calc(var(--feature-index) * 0.2s);
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.15);
        }

        .feature h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #fff;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .feature p {
            font-size: 1rem;
            color: #e0e0e0;
        }

        @keyframes fadeInFeature {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Статистика */
        .stats {
           
            backdrop-filter: blur(10px);
            padding: 40px 20px;
            border-radius: 12px;
            margin-top: 60px;
            text-align: center;
            
        }

        .stats h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .stats ul {
            list-style: none;
            padding: 0;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .stats ul li {
            font-size: 1.2rem;
            color: #e0e0e0;
            display: flex;
            align-items: center;
            padding: 10px 20px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .stats ul li:hover {
            transform: scale(1.05);
        }

        .stats ul li img {
            width: 120px;
            margin-right: 10px;
        }

        /* Селектор стран */
        .country-selector {
            font-size: 1.1rem;
            padding: 12px;
            margin-top: 30px;
            border-radius: 8px;
            border: 2px solid #4CAF50;
            background: #ffffff;
            color: #333;
            width: 200px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .country-selector:hover {
            background: #f0f0f0;
            border-color: #66BB6A;
        }

        .country-selector:focus {
            outline: none;
            border-color: #66BB6A;
            box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
        }

        .result {
            margin-top: 20px;
            font-size: 1.2rem;
            font-weight: 600;
            color: #4CAF50;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 8px;
        }

        /* Привлекательное предложение */
        .pricing {
            
            backdrop-filter: blur(10px);
            padding: 40px 20px;
            border-radius: 12px;
            margin-top: 60px;
            text-align: center;
            
        }

        .pricing h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .pricing p {
            font-size: 1.5rem;
            color: #e0e0e0;
            margin-bottom: 30px;
        }

        /* Отзывы */
        .review-container {
            margin: 40px 0;
            
            backdrop-filter: blur(10px);
            padding: 40px 20px;
            border-radius: 12px;
            
        }

        .review-container h2 {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .review {
            background: rgba(0, 0, 0, 0.2);
            padding: 20px;
            border-radius: 8px;
            margin: 15px 0;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            animation: fadeInReview 0.5s ease forwards;
            animation-delay: calc(var(--review-index) * 0.2s);
        }

        .review:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.15);
        }

        .review p {
            font-size: 1.1rem;
            color: #e0e0e0;
            margin: 0 0 10px;
        }

        .review .author {
            font-size: 1rem;
            font-weight: 600;
            color: #4CAF50;
            text-align: right;
        }

        @keyframes fadeInReview {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Плейсхолдер для изображения карты */
        .user-counter {
            text-align: center;
            margin: 40px 0;
            
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 12px;
            
            overflow: visible;
        }

        .user-counter h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        #user-count {
            font-size: 2.5rem;
            font-weight: 700;
            color: #4CAF50;
            margin: 10px 0;
        }

        #globe-canvas {
            width: 100%;
            max-width: 100%;
            height: 300px;
            border-radius: 8px;
            margin: 0 auto;
            display: block;
        }

        .tooltip {
            position: absolute;
            background: rgba(0, 0, 0, 0.8);
            color: #fff;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.9rem;
            pointer-events: none;
            z-index: 100;
        }

        /* Бейджи доверия */
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .trust-badge {
            background: linear-gradient(45deg, #4CAF50, #66BB6A);
            padding: 15px 20px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            text-align: center;
            min-width: 200px;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .trust-badge:hover {
            transform: scale(1.05);
        }

        /* Гарантия */
        .guarantee {
            text-align: center;
            margin: 40px 0;
            font-size: 1.2rem;
            color: #e0e0e0;
            
            padding: 20px;
            border-radius: 8px;
            
        }

        /* Футер */
        footer {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            color: #fff;
            padding: 20px 0;
            text-align: center;
        }

        footer p {
            margin: 0;
            font-size: 1rem;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .hero h2 {
                font-size: 2rem;
                animation: none;
            }

            .hero p {
                font-size: 1.1rem;
                animation: none;
            }

            header h1 {
                font-size: 2rem;
                animation: none;
            }

            .banner h2 {
                font-size: 1.6rem;
            }

            .banner p {
                font-size: 1rem;
            }

            .banner .highlight-text {
                font-size: 0.9rem;
            }

            .banner .pornhub-logo {
                width: 40px;
            }

            .countdown h3 {
                font-size: 1.6rem;
            }

            .countdown #timer {
                font-size: 1.8rem;
            }

            .speed-indicator h3 {
                font-size: 1.6rem;
            }

            .speed-value {
                font-size: 2rem;
            }

            .speed-meter {
                width: 200px;
                height: 100px;
            }

            .speed-needle {
                height: 50px;
            }

            .stats ul {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                max-width: 90%;
                font-size: 1rem;
                padding: 12px 20px;
            }

            .feature h3 {
                font-size: 1.6rem;
            }

            .user-counter {
                padding: 20px;
                overflow: visible;
            }

            #globe-canvas {
                height: 180px;
            }

            #user-count {
                font-size: 2rem;
            }

            .popup {
                width: 80%;
            }

            .social-ticker {
                font-size: 1rem;
            }

            .review-container h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h2 {
                font-size: 1.6rem;
            }

            .hero p {
                font-size: 0.9rem;
            }

            .cta-button {
                max-width: 100%;
                font-size: 0.9rem;
                padding: 10px 15px;
            }

            .banner h2 {
                font-size: 1.4rem;
            }

            .banner p {
                font-size: 0.9rem;
            }

            .banner .highlight-text {
                font-size: 1rem;
            }

            .banner .pornhub-logo {
                width: 235px;
            }

            .countdown h3 {
                font-size: 1.4rem;
            }

            .countdown #timer {
                font-size: 1.6rem;
            }

            .speed-indicator h3 {
                font-size: 1.4rem;
            }

            .speed-value {
                font-size: 2rem;
            }

            .speed-meter {
                width: 160px;
                height: 80px;
            }

            .speed-needle {
                height: 50px;
            }

            .pricing h2 {
                font-size: 1.8rem;
            }

            .pricing p {
                font-size: 1.2rem;
            }

            .feature h3 {
                font-size: 1.4rem;
            }

            .stats h2 {
                font-size: 1.8rem;
            }

            .review-container h2 {
                font-size: 1.8rem;
            }

            .user-counter {
                padding: 20px;
                overflow: visible;
            }

            #globe-canvas {
                height: 140px;
            }

            #user-count {
                font-size: 1.8rem;
            }
        }
 