
        :root {
            --tactical-gray: #BDC3C7;
            --alert-orange: #FF7700;
            --crisis-red: #E74C3C;
            --panel-bg: linear-gradient(135deg, #2c3e50 0%, #1a1f2d 100%);
            --text-light: #ECF0F1;
        }
        
        body {
            font-family: 'Rajdhani', 'Orbitron', sans-serif;
            background: var(--panel-bg);
            color: var(--tactical-gray);
            margin: 0;
            padding: 0px;
            line-height: 1.6;
        }
        
        .command-panel {
            border: 1px solid var(--alert-orange);
            border-radius: 4px;
            padding: 25px;
            margin-bottom: 0px;
            background: rgba(25, 30, 40, 1);
            box-shadow: 0 0 15px rgba(255, 119, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        h1, h2, h3 {
            color: var(--alert-orange);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }
        
        h1 {
            font-size: 2.5rem;
            border-bottom: 2px solid var(--alert-orange);
            padding-bottom: 10px;
            margin-top: 0;
        }
        
        h2 {
            font-size: 1.8rem;
            margin-top: 35px;
        }
        
        h3 {
            font-size: 1.4rem;
            margin-top: 25px;
        }
        
        .highlight {
            color: var(--alert-orange);
            font-weight: bold;
        }
        
        .critical {
            color: var(--crisis-red);
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: rgba(30, 35, 45, 0.7);
        }
        
        th {
            background: rgba(255, 119, 0, 0.15);
            color: var(--alert-orange);
            padding: 12px;
            text-align: left;
            border: 1px solid rgba(255, 119, 0, 0.3);
        }
        
        td {
            padding: 12px;
            border: 1px solid rgba(189, 195, 199, 0.2);
        }
        
        .roi-benefit {
            color: var(--alert-orange);
        }
        
        .client-proof {
            background: rgba(255, 119, 0, 0.1);
            border-left: 4px solid var(--alert-orange);
            padding: 0px;
            margin: 0px 0;
            font-style: italic;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--alert-orange);
            color: #000;
            padding: 12px 25px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 3px;
            margin: 15px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
        }
        
        .cta-button:hover {
            background: #ff8c00;
            box-shadow: 0 0 15px rgba(255, 119, 0, 0.5);
        }
        
        .synonym {
            font-style: italic;
            color: var(--alert-orange);
            display: inline-block;
            margin: 0 5px;
        }
        
        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 119, 0, 0.15) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 119, 0, 0.15) 1px, transparent 1px);
            background-size: 20px 20px;
            pointer-events: none;
            z-index: 0;
        }
        
        .target-animation {
            display: inline-block;
            position: relative;
            padding: 0 5px;
        }
        
        .target-animation::after {
            content: "";
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px solid var(--alert-orange);
            border-radius: 50%;
            animation: pulse 2s infinite;
            opacity: 0;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(0.8);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
    