
        :root {
            --tactical-gray: #BDC3C7;
            --alert-orange: #FF7700;
            --critical-red: #E74C3C;
            --panel-bg: linear-gradient(135deg, #2c3e50 0%, #1a1f27 100%);
        }
        body {
            font-family: 'Orbitron', sans-serif;
            background: #0d1520;
            color: var(--tactical-gray);
            margin: 0;
            padding: 20px;
            border-top: 3px solid var(--alert-orange);
        }
        .command-panel {
            background: var(--panel-bg);
            border: 1px solid #34495e;
            border-radius: 0;
            padding: 30px;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
        }
        .command-panel::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--alert-orange);
            box-shadow: 0 0 15px var(--alert-orange);
        }
        h1 {
            color: white;
            font-size: 2.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            text-shadow: 0 0 10px rgba(255, 119, 0, 0.7);
            position: relative;
        }
        h1::after {
            content: "OPERATION AIR SUPERIORITY";
            position: absolute;
            bottom: -25px;
            left: 0;
            color: var(--alert-orange);
            font-size: 1.2rem;
            letter-spacing: 3px;
        }
        h2 {
            color: var(--alert-orange);
            border-bottom: 2px dashed #34495e;
            padding-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 1.8rem;
            margin-top: 40px;
        }
        h3 {
            color: white;
            margin-top: 30px;
            font-size: 1.4rem;
            position: relative;
            display: inline-block;
        }
        h3::after {
            content: "▸";
            color: var(--alert-orange);
            margin-left: 10px;
            animation: pulse 1.5s infinite;
        }
        .intel-highlight {
            color: var(--alert-orange);
            font-weight: bold;
            text-shadow: 0 0 8px rgba(255, 119, 0, 0.5);
        }
        .status-report {
            background: rgba(25, 35, 50, 0.8);
            border-left: 4px solid var(--alert-orange);
            padding: 15px;
            margin: 20px 0;
            font-size: 1.1rem;
        }
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .spec-card {
            background: rgba(30, 40, 55, 0.7);
            border: 1px solid #3a506b;
            padding: 20px;
            position: relative;
        }
        .spec-card::before {
            content: "■";
            color: var(--alert-orange);
            position: absolute;
            top: -12px;
            left: 15px;
            background: var(--panel-bg);
            padding: 0 10px;
        }
        .target-acquired {
            animation: targetLock 2s forwards;
            border: 2px solid transparent;
        }
        @keyframes targetLock {
            0% { box-shadow: 0 0 0 0 rgba(255, 119, 0, 0); }
            100% { box-shadow: 0 0 0 8px rgba(255, 119, 0, 0.7); }
        }
        .mission-success {
            background: rgba(39, 60, 44, 0.6);
            border-left: 4px solid #2ecc71;
            padding: 20px;
            margin: 25px 0;
            position: relative;
        }
        .mission-success::before {
            content: "✓ SUCCESS";
            position: absolute;
            top: -12px;
            left: 20px;
            background: #2ecc71;
            color: black;
            padding: 3px 10px;
            font-size: 0.9rem;
            font-weight: bold;
        }
        .cta-strike {
            background: var(--alert-orange);
            color: black;
            text-align: center;
            padding: 25px;
            margin-top: 40px;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 3px;
            font-size: 1.4rem;
            position: relative;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }
        .cta-strike:hover {
            background: #ff8c00;
            box-shadow: 0 0 30px rgba(255, 119, 0, 0.8);
        }
        .cta-strike::after {
            content: "▼";
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2rem;
            color: var(--alert-orange);
            animation: missileLaunch 1.5s infinite;
        }
        @keyframes missileLaunch {
            0% { opacity: 0; transform: translate(-50%, 0); }
            50% { opacity: 1; }
            100% { opacity: 0; transform: translate(-50%, -20px); }
        }
        .radar-scan {
            height: 2px;
            background: var(--alert-orange);
            margin: 25px 0;
            position: relative;
            overflow: hidden;
        }
        .radar-scan::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 30%;
            height: 100%;
            background: white;
            box-shadow: 0 0 15px white;
            animation: radarSweep 3s infinite linear;
        }
        @keyframes radarSweep {
            0% { left: -30%; }
            100% { left: 100%; }
        }
    