:root {
            --neon-blue: #00f3ff;
            --neon-red: #ff003c;
            --dark-bg: #0a0e1f;
            --panel-bg: rgba(10, 20, 40, 0.85);
        }
        
        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--dark-bg);
            color: #e0e6ed;
            overflow-x: hidden;
        }
        
        .font-orbitron { font-family: 'Orbitron', sans-serif; }
        
        /* Scanline effect */
        .scanlines::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(255,255,255,0),
                rgba(255,255,255,0) 50%,
                rgba(0,0,0,0.2) 50%,
                rgba(0,0,0,0.2)
            );
            background-size: 100% 4px;
            pointer-events: none;
            z-index: 10;
        }
        
        /* Glitch effect */
        .glitch {
            position: relative;
            animation: glitch-skew 1s infinite;
        }
        
        @keyframes glitch-skew {
            0% { transform: skew(0deg); }
            20% { transform: skew(-2deg); }
            40% { transform: skew(2deg); }
            60% { transform: skew(-1deg); }
            80% { transform: skew(1deg); }
            100% { transform: skew(0deg); }
        }
        
        .hologram-border {
            border: 1px solid rgba(0, 243, 255, 0.3);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.1),
                        inset 0 0 20px rgba(0, 243, 255, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .hologram-border::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, transparent, var(--neon-blue), transparent);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: -1;
        }
        
        .hologram-border:hover::before {
            opacity: 0.5;
            animation: border-rotate 3s linear infinite;
        }
        
        @keyframes border-rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .radar-sweep {
            position: absolute;
            width: 100%;
            height: 100%;
            background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 243, 255, 0.1) 60deg, transparent 60deg);
            animation: sweep 4s linear infinite;
            border-radius: 50%;
        }
        
        @keyframes sweep {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .data-stream {
            background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.3), transparent);
            height: 1px;
            animation: stream 2s linear infinite;
        }
        
        @keyframes stream {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        .hex-grid {
            background-image: radial-gradient(circle, rgba(0, 243, 255, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
        }
        
        .threat-level {
            animation: pulse-red 2s ease-in-out infinite;
        }
        
        @keyframes pulse-red {
            0%, 100% { box-shadow: 0 0 10px rgba(255, 0, 60, 0.5); }
            50% { box-shadow: 0 0 30px rgba(255, 0, 60, 0.8); }
        }
        
        .capability-card {
            transition: all 0.3s ease;
            transform-style: preserve-3d;
        }
        
        .capability-card:hover {
            transform: translateY(-10px) rotateX(5deg);
            box-shadow: 0 20px 40px rgba(0, 243, 255, 0.2);
        }
        
        .frequency-bar {
            animation: frequency-animate 3s ease-in-out infinite;
        }
        
        @keyframes frequency-animate {
            0%, 100% { height: 20%; }
            50% { height: 80%; }
        }
        
        #canvas-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.3;
        }
        
        .typing-effect::after {
            content: '|';
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
        
        .comparison-row:hover {
            background: rgba(0, 243, 255, 0.1);
            transform: scale(1.02);
            transition: all 0.3s;
        }
