
        :root {
            --tactical-orange: #FF7700;
            --tactical-gray: #BDC3C7;
            --critical-red: #E74C3C;
            --panel-bg: linear-gradient(135deg, #2c3e50 0%, #1a1f2d 100%);
            --aluminum-texture: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px,transparent 1px, transparent 11px);
        }
        
        body {
            background: var(--panel-bg);
            color: var(--tactical-gray);
            font-family: 'Rajdhani', 'Orbitron', sans-serif;
            margin: 0;
            padding: 20px;
            overflow-x: hidden;
        }
        
        .command-panel {
            background: var(--aluminum-texture), 
                        radial-gradient(circle at center, rgba(50,50,60,0.8) 0%, rgba(30,30,40,0.9) 100%);
            border: 1px solid rgba(255,119,0,0.3);
            border-radius: 4px;
            box-shadow: 0 0 20px rgba(255,119,0,0.2);
            padding: 25px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .command-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--tactical-orange);
            box-shadow: 0 0 10px var(--tactical-orange);
        }
        
        h1, h2, h3 {
            color: var(--tactical-orange);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0;
        }
        
        h1 {
            font-size: 2.4rem;
            border-bottom: 2px solid var(--tactical-orange);
            padding-bottom: 10px;
            margin-bottom: 25px;
        }
        
        h2 {
            font-size: 1.8rem;
            position: relative;
            padding-left: 20px;
        }
        
        h2::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--tactical-orange);
        }
        
        h3 {
            font-size: 1.4rem;
            color: var(--tactical-gray);
            border-left: 3px solid var(--tactical-orange);
            padding-left: 15px;
            margin-top: 25px;
        }
        
        .critical-data {
            color: var(--tactical-orange);
            font-weight: bold;
            text-shadow: 0 0 8px rgba(255,119,0,0.5);
        }
        
        .risk-data {
            color: var(--critical-red);
            font-weight: bold;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: rgba(30,30,40,0.7);
        }
        
        th {
            background: rgba(255,119,0,0.15);
            color: var(--tactical-orange);
            text-align: left;
            padding: 12px 15px;
            border-bottom: 1px solid var(--tactical-orange);
        }
        
        td {
            padding: 12px 15px;
            border-bottom: 1px solid rgba(255,119,0,0.1);
        }
        
        tr:nth-child(even) {
            background: rgba(40,40,50,0.3);
        }
        
        .roi-highlight {
            position: relative;
            padding: 15px;
            margin: 20px 0;
            border-left: 3px solid var(--tactical-orange);
            background: rgba(255,119,0,0.08);
        }
        
        .target-lock {
            display: inline-block;
            position: relative;
            padding-right: 30px;
        }
        
        .target-lock::after {
            content: '◉';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            color: var(--tactical-orange);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 0.3; }
            50% { opacity: 1; }
            100% { opacity: 0.3; }
        }
        
        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(255,119,0,0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,119,0,0.05) 1px, transparent 1px);
            background-size: 20px 20px;
            pointer-events: none;
            z-index: -1;
        }
        
        .particle-trail {
            position: absolute;
            height: 2px;
            background: var(--tactical-orange);
            box-shadow: 0 0 10px var(--tactical-orange);
            animation: trail 15s linear infinite;
            z-index: -1;
        }
        
        @keyframes trail {
            0% { left: -10%; width: 0; }
            10% { width: 100px; }
            90% { width: 100px; }
            100% { left: 110%; width: 0; }
        }
    