
        :root {
            --tactical-orange: #FF7700;
            --alert-orange: #FF5500;
            --tactical-gray: #BDC3C7;
            --critical-red: #E74C3C;
            --panel-bg: rgba(30, 30, 35, 0.85);
        }
        
        body {
            background: radial-gradient(circle at center, #1a1a25 0%, #0a0a12 100%);
            color: #f0f0f0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }
        
        /* Particle effect container */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
        }
        
        .command-panel {
            background: var(--panel-bg);
            border: 1px solid rgba(255, 119, 0, 0.3);
            border-radius: 4px;
            padding: 25px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(255, 119, 0, 0.2);
        }
        
        .command-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--tactical-orange), transparent);
            animation: radar-sweep 3s infinite linear;
        }
        
        @keyframes radar-sweep {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        h1 {
            color: var(--tactical-orange);
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(255, 119, 0, 0.7);
            border-bottom: 2px solid var(--tactical-orange);
            padding-bottom: 15px;
            margin-top: 0;
        }
        
        h2 {
            color: var(--tactical-orange);
            font-size: 1.8rem;
            margin-top: 35px;
            position: relative;
            padding-left: 20px;
        }
        
        h2::before {
            content: '■';
            color: var(--tactical-orange);
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.2rem;
            animation: pulse 1.5s infinite;
        }
        
        h3 {
            color: var(--tactical-orange);
            font-size: 1.4rem;
            margin-top: 25px;
            position: relative;
            padding-left: 15px;
        }
        
        h3::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--tactical-orange);
            font-size: 0.8rem;
        }
        
        @keyframes pulse {
            0% { opacity: 0.3; }
            50% { opacity: 1; }
            100% { opacity: 0.3; }
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: rgba(25, 25, 35, 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);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        
        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 {
            color: var(--tactical-orange);
            font-weight: bold;
        }
        
        .critical-data {
            color: var(--critical-red);
            animation: blink 2s infinite;
        }
        
        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        
        .target-lock {
            position: relative;
            display: inline-block;
            padding: 0 20px;
        }
        
        .target-lock::before,
        .target-lock::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 15px;
            height: 2px;
            background: var(--tactical-orange);
            animation: target-pulse 1.5s infinite;
        }
        
        .target-lock::before {
            left: 0;
        }
        
        .target-lock::after {
            right: 0;
        }
        
        @keyframes target-pulse {
            0% { opacity: 0; width: 0; }
            50% { opacity: 1; width: 15px; }
            100% { opacity: 0; width: 0; }
        }
        
        .quote {
            border-left: 3px solid var(--tactical-orange);
            padding: 15px 20px;
            margin: 20px 0;
            background: rgba(255, 119, 0, 0.05);
            position: relative;
            font-style: italic;
        }
        
        .quote::before {
            content: '"';
            position: absolute;
            top: -15px;
            left: 10px;
            font-size: 4rem;
            color: rgba(255, 119, 0, 0.1);
            font-family: Georgia, serif;
        }
        
        .btn-tactical {
            background: linear-gradient(to bottom, var(--tactical-orange), #d86000);
            color: black;
            border: none;
            padding: 12px 25px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(255, 119, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn-tactical::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(30deg);
            transition: all 0.6s;
        }
        
        .btn-tactical:hover {
            box-shadow: 0 6px 15px rgba(255, 119, 0, 0.5);
            transform: translateY(-2px);
        }
        
        .btn-tactical:hover::before {
            transform: rotate(30deg) translate(10%, 10%);
        }
        
        .spec-highlight {
            background: rgba(255, 119, 0, 0.1);
            padding: 2px 6px;
            border-radius: 3px;
            border: 1px dashed var(--tactical-orange);
        }
    