
        :root {
            --plasma-orange: #FFAA00;
            --quantum-blue: #3498DB;
            --supernova-red: #E74C3C;
            --nebula-dark: #0A0F1D;
            --alloy-light: #E0E0E0;
        }
        
        body {
            background: radial-gradient(circle at center, #1A1F2F 0%, #0A0F1D 100%);
            color: #E0E0E0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            overflow-x: hidden;
        }
        
        /* Stellar Particle Effect */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 170, 0, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(52, 152, 219, 0.1) 0%, transparent 40%);
            pointer-events: none;
            z-index: -1;
        }
        
        h1, h2, h3 {
            font-weight: 700;
            margin-top: 2rem;
            position: relative;
        }
        
        h1 {
            color: var(--plasma-orange);
            font-size: 2.5rem;
            text-shadow: 0 0 15px rgba(255, 170, 0, 0.5);
            border-bottom: 2px solid var(--plasma-orange);
            padding-bottom: 1rem;
        }
        
        h2 {
            color: var(--quantum-blue);
            font-size: 1.8rem;
            margin-top: 3rem;
            padding-left: 1rem;
            border-left: 4px solid var(--quantum-blue);
        }
        
        h3 {
            color: var(--plasma-orange);
            font-size: 1.4rem;
            margin-top: 2rem;
        }
        
        .intro {
            background: rgba(25, 30, 45, 0.7);
            border: 1px solid var(--plasma-orange);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .intro::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--plasma-orange), transparent);
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--plasma-orange), #FF7700);
            color: #0A0F1D;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            font-weight: 700;
            text-decoration: none;
            margin-top: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(255, 170, 0, 0.5);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(255, 170, 0, 0.7);
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: rgba(20, 25, 40, 0.7);
            border: 1px solid var(--quantum-blue);
            border-radius: 8px;
            overflow: hidden;
        }
        
        th {
            background: rgba(52, 152, 219, 0.2);
            color: var(--quantum-blue);
            padding: 1rem;
            text-align: left;
            border-bottom: 2px solid var(--quantum-blue);
        }
        
        td {
            padding: 1rem;
            border-bottom: 1px solid rgba(52, 152, 219, 0.1);
        }
        
        tr:last-child td {
            border-bottom: none;
        }
        
        .roi-highlight {
            color: var(--plasma-orange);
            font-weight: 600;
        }
        
        .client-proof {
            background: rgba(25, 30, 45, 0.7);
            border-left: 4px solid var(--plasma-orange);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
        }
        
        .inventory-alert {
            position: relative;
            padding-left: 2rem;
        }
        
        .inventory-alert::before {
            content: "⚠";
            position: absolute;
            left: 0;
            color: var(--supernova-red);
            font-size: 1.2rem;
        }
        
        .delivery-pressure {
            display: inline-block;
            transform: skewX(-5deg);
            background: rgba(231, 76, 60, 0.1);
            padding: 0.2rem 0.5rem;
            border: 1px dashed var(--supernova-red);
        }
        
        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--plasma-orange), transparent);
            margin: 3rem 0;
        }
        
        .supply-chain {
            position: relative;
            padding: 1.5rem;
            background: rgba(20, 25, 40, 0.7);
            border-radius: 8px;
            margin: 2rem 0;
            overflow: hidden;
        }
        
        .supply-chain::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--plasma-orange), var(--quantum-blue));
        }
        
        .supply-chain .planet {
            display: inline-block;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--plasma-orange);
            box-shadow: 0 0 10px var(--plasma-orange);
            margin-right: 8px;
            position: relative;
            top: 3px;
        }
        
        .supply-chain .planet::after {
            content: "";
            position: absolute;
            top: -6px;
            left: -6px;
            right: -6px;
            bottom: -6px;
            border: 1px solid var(--plasma-orange);
            border-radius: 50%;
            opacity: 0.5;
            animation: pulse 3s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.2; }
            100% { transform: scale(1); opacity: 0.5; }
        }
    