@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');
        
        * {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: #0a0a0a;
            color: #f0f0f0;
            overflow-x: hidden;
        }
        
        .hero-bg {
            background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 70%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(57, 255, 20, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(57, 255, 20, 0.15) 0%, transparent 50%),
                linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.9));
            z-index: -1;
            animation: backgroundShift 8s ease-in-out infinite;
        }
        
        @keyframes backgroundShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        .circuit-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(57, 255, 20, 0.08) 1px, transparent 1px),
                radial-gradient(circle at 30% 50%, rgba(57, 255, 20, 0.08) 1px, transparent 1px),
                radial-gradient(circle at 70% 80%, rgba(57, 255, 20, 0.08) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.4;
            z-index: -1;
            animation: circuitFlow 12s linear infinite;
        }
        
        @keyframes circuitFlow {
            0% { background-position: 0% 0%; }
            100% { background-position: 100% 100%; }
        }
        
        .neon-glow {
            text-shadow: 0 0 15px rgba(57, 255, 20, 0.8), 0 0 30px rgba(57, 255, 20, 0.4);
            animation: textGlow 3s ease-in-out infinite alternate;
        }
        
        @keyframes textGlow {
            from { text-shadow: 0 0 15px rgba(57, 255, 20, 0.8), 0 0 30px rgba(57, 255, 20, 0.4); }
            to { text-shadow: 0 0 20px rgba(57, 255, 20, 1), 0 0 40px rgba(57, 255, 20, 0.6); }
        }
        
        .neon-border {
            border: 1px solid rgba(57, 255, 20, 0.5);
            box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .neon-border::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, transparent, rgba(57, 255, 20, 0.3), transparent);
            z-index: -1;
            border-radius: inherit;
            animation: borderRotate 3s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .neon-border:hover::before {
            opacity: 1;
        }
        
        @keyframes borderRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .neon-button {
            background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
            border: 2px solid #39FF14;
            box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .neon-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.3), transparent);
            transition: left 0.5s ease;
        }
        
        .neon-button:hover {
            box-shadow: 0 0 30px rgba(57, 255, 20, 1), 0 0 60px rgba(57, 255, 20, 0.5);
            transform: translateY(-3px) scale(1.02);
        }
        
        .neon-button:hover::before {
            left: 100%;
        }
        
        .feature-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(57, 255, 20, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        /* .feature-card:hover {
            transform: translateY(-8px) rotateX(5deg);
            box-shadow: 0 20px 40px rgba(57, 255, 20, 0.2);
        } */
        
        .feature-card:hover::before {
            opacity: 1;
        }
        
        /* .feature-card:hover .feature-icon {
            transform: scale(1.2) rotate(360deg);
        } */
        
        .feature-icon {
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .plan-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(57, 255, 20, 0.02), rgba(57, 255, 20, 0.08), rgba(57, 255, 20, 0.02));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .plan-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 25px 50px rgba(57, 255, 20, 0.3);
        }
        
        .plan-card:hover::before {
            opacity: 1;
        }        
        .hero-plan {
            border: 3px solid #39FF14;
            box-shadow: 0 0 30px rgba(57, 255, 20, 0.6), 0 0 60px rgba(57, 255, 20, 0.3);
            position: relative;
            transform: scale(1.05);
            z-index: 10;
            animation: planPulse 4s ease-in-out infinite;
        }
        
        @keyframes planPulse {
            0%, 100% { box-shadow: 0 0 30px rgba(57, 255, 20, 0.6), 0 0 60px rgba(57, 255, 20, 0.3); }
            50% { box-shadow: 0 0 40px rgba(57, 255, 20, 0.8), 0 0 80px rgba(57, 255, 20, 0.5); }
        }
        
        .hero-plan::after {
            content: "POPULAR";
            position: absolute;
            top: -5px;
            right: 20px;
            background: linear-gradient(45deg, #39FF14, #32E612);
            color: #0a0a0a;
            font-weight: bold;
            padding: 5px 15px;
            border-radius: 25px;
            font-size: 0.75rem;
            box-shadow: 0 0 15px rgba(57, 255, 20, 0.7);
            animation: badgeGlow 2s ease-in-out infinite alternate;
        }
        
        @keyframes badgeGlow {
            from { box-shadow: 0 0 15px rgba(57, 255, 20, 0.7); }
            to { box-shadow: 0 0 25px rgba(57, 255, 20, 1); }
        }
        
        .testimonial-card {
            background: linear-gradient(145deg, #151515, #0f0f0f);
            border: 1px solid rgba(57, 255, 20, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, rgba(57, 255, 20, 0.1), rgba(57, 255, 20, 0.3), rgba(57, 255, 20, 0.1));
            z-index: -1;
            border-radius: inherit;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px) rotateY(2deg);
            box-shadow: 0 15px 30px rgba(57, 255, 20, 0.2);
        }
        
        .testimonial-card:hover::before {
            opacity: 1;
        }
        
        .world-map {
            position: relative;
            background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
            border: 1px solid rgba(57, 255, 20, 0.2);
            transition: all 0.3s ease;
        }
        
        .world-map:hover {
            box-shadow: 0 0 40px rgba(57, 255, 20, 0.3);
        }
        
        .server-dot {
            position: absolute;
            width: 15px;
            height: 15px;
            background: radial-gradient(circle, #39FF14, #32E612);
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(57, 255, 20, 0.8);
            animation: serverPulse 3s infinite;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .server-dot:hover {
            transform: scale(1.5);
            box-shadow: 0 0 25px rgba(57, 255, 20, 1);
        }
        
        .server-dot::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 30px;
            height: 30px;
            border: 2px solid rgba(57, 255, 20, 0.4);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: ripple 2s infinite;
        }
        
        @keyframes serverPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.3); opacity: 0.8; }
        }
        
        @keyframes ripple {
            0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
            100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
        }
        
        .server-location {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            transform: translateX(-50%);
        }
        
        .server-label {
            margin-top: 8px;
            background: rgba(0, 0, 0, 0.8);
            color: #39FF14;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 4px;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(57, 255, 20, 0.3);
            animation: labelGlow 3s ease-in-out infinite;
        }
        
        .server-location:hover .server-label {
            background: rgba(57, 255, 20, 0.1);
            border-color: #39FF14;
            transform: scale(1.1);
        }
        
        @keyframes labelGlow {
            0%, 100% { 
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 10px rgba(57, 255, 20, 0.2); 
            }
            50% { 
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(57, 255, 20, 0.4); 
            }
        }

        .uptime-indicator {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: radial-gradient(circle, #39FF14, #32E612);
            box-shadow: 0 0 15px rgba(57, 255, 20, 0.8);
            margin-right: 10px;
            animation: statusPulse 2s infinite;
        }
        
        @keyframes statusPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }
        
        .accordion-item {
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }
        
        .accordion-item:hover {
            background: rgba(57, 255, 20, 0.02);
        }
        
        .accordion-header {
            cursor: pointer;
            padding: 25px 0;
            transition: all 0.3s ease;
        }
        
        .accordion-header:hover {
            color: #39FF14;
        }
        
        .accordion-header i {
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .accordion-content.active {
            max-height: 500px;
        }
        
        .stats-counter {
            font-family: 'Orbitron', monospace;
            animation: counterGlow 3s ease-in-out infinite alternate;
            white-space: nowrap;
            display: inline-block;
            min-width: fit-content;
        }
        
        @keyframes counterGlow {
            from { text-shadow: 0 0 10px rgba(57, 255, 20, 0.5); }
            to { text-shadow: 0 0 20px rgba(57, 255, 20, 0.8); }
        }
        
        .hover-lift {
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .hover-lift:hover {
            transform: translateY(-3px);
            text-shadow: 0 0 15px rgba(57, 255, 20, 0.6);
        }
        
        .floating-element {
            animation: floating 6s ease-in-out infinite;
        }
        
        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        .gradient-text {
            background: linear-gradient(45deg, #39FF14, #ffffff, #39FF14);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease infinite;
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .social-icon {
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }
        
        .social-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(57, 255, 20, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }
        
        .social-icon:hover::before {
            width: 40px;
            height: 40px;
        }
        
        .social-icon:hover {
            transform: translateY(-3px) scale(1.2);
            color: #39FF14;
            text-shadow: 0 0 15px rgba(57, 255, 20, 0.8);
        }
        
        .interactive-button {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .interactive-button::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(57, 255, 20, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.4s ease;
        }
        
        .interactive-button:hover::after {
            width: 300px;
            height: 300px;
        }
        
        .interactive-button:hover {
            color: #000;
            border-color: #39FF14;
        }
        
        .logo-text {
            font-family: 'Orbitron', monospace;
            font-weight: 900;
        }

        /* Mobile responsive fixes for stats display */
        @media (max-width: 768px) {
            .stats-counter {
                font-size: 2rem !important;
                line-height: 1.2;
                letter-spacing: 0.05em;
            }
            
            .hover-lift {
                min-width: 120px;
                padding: 0 8px;
            }
        }
        
        @media (max-width: 480px) {
            .stats-counter {
                font-size: 1.75rem !important;
            }
        }
