body {
            font-family: 'Inter', sans-serif;
            background-color: #020617;
            color: #f8fafc;
            overflow-x: hidden;
        }
        
        .gradient-text {
            background: linear-gradient(90deg, #8b5cf6, #10b981);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #8b5cf6 0%, #10b981 100%);
        }
        
        .gradient-border {
            position: relative;
            border-radius: 1rem;
        }
        
        .gradient-border::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 1rem;
            padding: 2px;
            background: linear-gradient(135deg, #8b5cf6 0%, #10b981 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }
        
        .card-glow {
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
            transition: all 0.3s ease;
        }
        
        .card-glow:hover {
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #8b5cf6 0%, #10b981 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .stats-card {
            backdrop-filter: blur(10px);
            background: rgba(15, 23, 42, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .discord-btn {
            background: #5865F2;
            transition: all 0.3s ease;
        }
        
        .discord-btn:hover {
            background: #4752C4;
            transform: translateY(-2px);
        }
        
        .nav-link {
            position: relative;
        }
          /* Header line removed as requested */
        
        .particle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b5cf6 0%, #10b981 100%);
            opacity: 0.3;
            filter: blur(20px);
            z-index: -1;
        }
        
        .animated-blob {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b5cf6 0%, #10b981 100%);
            filter: blur(60px);
            opacity: 0.2;
            z-index: -1;
            animation: float 8s ease-in-out infinite;
        }
        
        .animated-blob-2 {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b5cf6 0%, #10b981 100%);
            filter: blur(60px);
            opacity: 0.2;
            z-index: -1;
            animation: float-reverse 10s ease-in-out infinite;
        }
        
        .command-chip {
            background: rgba(15, 23, 42, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .command-chip:hover {
            background: rgba(30, 27, 75, 0.7);
            transform: translateY(-2px);
        }
          .marquee-container {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }
        
        .marquee-content {
            display: inline-flex;
            animation: marquee 30s linear infinite;
        }
        
        .marquee-item {
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
            padding-right: 2rem;
            flex-shrink: 0;
        }
        
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        .marquee-container:hover .marquee-content {
            animation-play-state: paused;
        }
          /* CTA Section Tech Animations */
        .grid-pattern {
            background-image: 
                linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -10;
            animation: grid-move 20s linear infinite;
            pointer-events: none;
        }
        
        @keyframes grid-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(20px, 20px); }
        }
        
        @keyframes fade-in {
            0% { 
                opacity: 0; 
                transform: translateY(10px);
            }
            100% { 
                opacity: 1; 
                transform: translateY(0);
            }
        }
        
        .animate-fade-in {
            animation: fade-in 1s ease-out;
        }
        
        @keyframes typing-cursor {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
        
        .animate-typing-cursor {
            animation: typing-cursor 1s infinite;
        }
        
        /* Tech Button Hover Effects */
        .tech-button {
            position: relative;
            overflow: hidden;
        }
        
        .tech-button::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;
        }
        
        .tech-button:hover::before {
            left: 100%;
        }
        
        /* Scanning Line Animation */
        @keyframes scan-line {
            0% { transform: translateX(-100%) skewX(-12deg); }
            100% { transform: translateX(200%) skewX(-12deg); }
        }
        
        .scan-line {
            animation: scan-line 2s ease-in-out infinite;
        }
        
        /* Circuit Line Animations */
        @keyframes circuit-pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }
        
        .circuit-line {
            animation: circuit-pulse 3s ease-in-out infinite;
        }
        
        .circuit-line.delay-300 {
            animation-delay: 0.3s;
        }
        
        .circuit-line.delay-500 {
            animation-delay: 0.5s;
        }
        
        .circuit-line.delay-700 {
            animation-delay: 0.7s;
        }
        
        .circuit-line.delay-800 {
            animation-delay: 0.8s;
        }
        
        .circuit-line.delay-900 {
            animation-delay: 0.9s;
        }
        
        .circuit-line.delay-1000 {
            animation-delay: 1s;
        }
        
        /* Enhanced Particle Animations */
        @keyframes enhanced-pulse {
            0%, 100% { 
                opacity: 0.4; 
                transform: scale(1);
            }
            50% { 
                opacity: 1; 
                transform: scale(1.2);
            }
        }
        
        @keyframes enhanced-ping {
            0% { 
                transform: scale(1); 
                opacity: 0.8; 
            }
            75%, 100% { 
                transform: scale(2); 
                opacity: 0; 
            }
        }
        
        @keyframes enhanced-spin {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1); }
        }
        
        @keyframes enhanced-bounce {
            0%, 100% { 
                transform: translateY(0) scale(1);
                opacity: 0.6;
            }
            50% { 
                transform: translateY(-15px) scale(1.1);
                opacity: 1;
            }
        }
        
        /* Apply enhanced animations with delays */
        .animate-pulse.delay-200 {
            animation: enhanced-pulse 2s ease-in-out infinite;
            animation-delay: 0.2s;
        }
        
        .animate-pulse.delay-300 {
            animation: enhanced-pulse 2s ease-in-out infinite;
            animation-delay: 0.3s;
        }
        
        .animate-pulse.delay-400 {
            animation: enhanced-pulse 2s ease-in-out infinite;
            animation-delay: 0.4s;
        }
        
        .animate-ping.delay-400 {
            animation: enhanced-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
            animation-delay: 0.4s;
        }
        
        .animate-ping.delay-500 {
            animation: enhanced-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
            animation-delay: 0.5s;
        }
        
        .animate-ping.delay-600 {
            animation: enhanced-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
            animation-delay: 0.6s;
        }
        
        .animate-spin.delay-600 {
            animation: enhanced-spin 3s linear infinite;
            animation-delay: 0.6s;
        }
        
        .animate-spin.delay-700 {
            animation: enhanced-spin 3s linear infinite;
            animation-delay: 0.7s;
        }
        
        .animate-spin.delay-800 {
            animation: enhanced-spin 3s linear infinite;
            animation-delay: 0.8s;
        }
        
        .animate-bounce.delay-500 {
            animation: enhanced-bounce 2s ease-in-out infinite;
            animation-delay: 0.5s;
        }
        
        .animate-bounce.delay-900 {
            animation: enhanced-bounce 2s ease-in-out infinite;
            animation-delay: 0.9s;
        }
        
        .animate-bounce.delay-1000 {
            animation: enhanced-bounce 2s ease-in-out infinite;
            animation-delay: 1s;
        }
        
        .animate-bounce.delay-1100 {
            animation: enhanced-bounce 2s ease-in-out infinite;
            animation-delay: 1.1s;
        }
        
        /* Section-specific Grid Patterns */
        .opacity-4 .grid-pattern {
            opacity: 0.4;
            animation-duration: 25s;
        }
        
        .opacity-5 .grid-pattern {
            opacity: 0.5;
            animation-duration: 22s;
        }
        
        .opacity-6 .grid-pattern {
            opacity: 0.6;
            animation-duration: 18s;
        }
        
        .opacity-7 .grid-pattern {
            opacity: 0.7;
            animation-duration: 15s;
        }
        
        .opacity-8 .grid-pattern {
            opacity: 0.8;
            animation-duration: 28s;
        }
        
        .opacity-10 .grid-pattern {
            opacity: 1.0;
            animation-duration: 30s;
        }
        
        /* Enhanced Glow Effects for Tech Elements */
        .tech-particle-glow {
            filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
        }
        
        .tech-particle-glow.secondary {
            filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
        }
        
        /* Responsive Adjustments for Mobile */
        @media (max-width: 768px) {
            .grid-pattern {
                background-size: 15px 15px;
            }
            
            /* Hide some particles on mobile for performance */
            .absolute.top-40, 
            .absolute.bottom-32 {
                display: none;
            }
        }
        
        /* Performance Optimizations */
        .grid-pattern,
        .circuit-line,
        [class*="animate-"] {
            will-change: transform, opacity;
            backface-visibility: hidden;
        }
        
        /* Advanced Tech Elements */
        .hologram-effect {
            position: relative;
            overflow: hidden;
        }
        
        .hologram-effect::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(139, 92, 246, 0.1) 2px,
                rgba(139, 92, 246, 0.1) 4px
            );
            animation: hologram-scan 3s linear infinite;
            pointer-events: none;
        }
        
        @keyframes hologram-scan {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(100%); }
        }
        
        /* Matrix-style Digital Rain Effect */
        .digital-rain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        
        .digital-rain::before {
            content: '0110100101001';
            position: absolute;
            top: -100%;
            left: 10%;
            color: rgba(16, 185, 129, 0.3);
            font-family: 'Courier New', monospace;
            font-size: 12px;
            white-space: pre;
            animation: digital-fall 8s linear infinite;
        }
        
        .digital-rain::after {
            content: '1010011010110';
            position: absolute;
            top: -100%;
            right: 15%;
            color: rgba(139, 92, 246, 0.3);
            font-family: 'Courier New', monospace;
            font-size: 12px;
            white-space: pre;
            animation: digital-fall 10s linear infinite 2s;
        }
        
        @keyframes digital-fall {
            0% { transform: translateY(-100%); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(100vh); opacity: 0; }
        }
        
        /* Tech Status Indicators */
        .status-indicator {
            display: inline-flex;
            align-items: center;
            padding: 4px 8px;
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(139, 92, 246, 0.3);
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .status-indicator::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            margin-right: 6px;
            animation: status-pulse 2s ease-in-out infinite;
        }
        
        .status-indicator.online::before {
            background: #10b981;
        }
        
        .status-indicator.processing::before {
            background: #f59e0b;
        }
        
        .status-indicator.secure::before {
            background: #8b5cf6;
        }
        
        @keyframes status-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.2); }
        }
        
        /* Quantum-style Particle Field */
        .quantum-field {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .quantum-particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.8), rgba(139, 92, 246, 0));
            border-radius: 50%;
            animation: quantum-drift 15s linear infinite;
        }
        
        .quantum-particle:nth-child(odd) {
            background: radial-gradient(circle, rgba(16, 185, 129, 0.8), rgba(16, 185, 129, 0));
            animation-duration: 12s;
            animation-delay: -3s;
        }
        
        @keyframes quantum-drift {
            0% {
                transform: translate(0, 100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
                transform: scale(1);
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translate(100px, -100px) scale(0);
                opacity: 0;
            }
        }
        
        /* Tech Card Enhancements */
        .tech-card {
            position: relative;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 27, 75, 0.6));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(139, 92, 246, 0.2);
        }
        
        .tech-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: inherit;
        }
        
        .tech-card:hover::before {
            opacity: 1;
        }
        
        /* Neural Network Animation */
        .neural-network {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .neural-node {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(139, 92, 246, 0.6);
            border-radius: 50%;
            animation: neural-pulse 3s ease-in-out infinite;
        }
        
        .neural-connection {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, rgba(139, 92, 246, 0.3), rgba(16, 185, 129, 0.3));
            transform-origin: left center;
            animation: neural-flow 4s ease-in-out infinite;
        }
        
        @keyframes neural-pulse {
            0%, 100% { 
                transform: scale(1); 
                opacity: 0.6; 
            }
            50% { 
                transform: scale(1.5); 
                opacity: 1; 
            }
        }
        
        @keyframes neural-flow {
            0%, 100% { 
                opacity: 0.3; 
                transform: scaleX(0);
            }
            50% { 
                opacity: 0.8; 
                transform: scaleX(1);
            }
        }
        
        /* Responsive Tech Optimizations */
        @media (max-width: 768px) {
            .hologram-effect::before,
            .digital-rain,
            .quantum-field,
            .neural-network {
                display: none;
            }
            
            .tech-particle-glow {
                filter: none;
            }
        }
        
        /* High Performance Mode */
        @media (prefers-reduced-motion: reduce) {
            .grid-pattern,
            .circuit-line,
            .hologram-effect::before,
            .quantum-particle,
            .neural-node,
            .neural-connection {
                animation: none;
            }
        }