
        /* Mobile responsive styles */
        :root {
            --plasma-orange: #FFAA00;
            --quantum-blue: #3498DB;
            --supernova-red: #E74C3C;
            --nebula-dark: #0A0F1D;
            --alloy-light: #E0E0E0;
        }
        
        * {
            box-sizing: border-box;
        }
        
        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: 1rem;
            margin: 0;
            position: relative;
            overflow-x: hidden;
        }
        
        /* Simplified Stellar 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.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(52, 152, 219, 0.05) 0%, transparent 40%);
            pointer-events: none;
            z-index: -1;
        }
        
        h1, h2, h3 {
            font-weight: 700;
            margin-top: 1.5rem;
            position: relative;
        }
        
        h1 {
            color: var(--plasma-orange);
            font-size: 1.8rem;
            text-shadow: 0 0 8px rgba(255, 170, 0, 0.3);
            border-bottom: 2px solid var(--plasma-orange);
            padding-bottom: 0.8rem;
        }
        
        h2 {
            color: var(--quantum-blue);
            font-size: 1.5rem;
            margin-top: 2rem;
            padding-left: 0.8rem;
            border-left: 3px solid var(--quantum-blue);
        }
        
        h3 {
            color: var(--plasma-orange);
            font-size: 1.2rem;
            margin-top: 1.5rem;
        }
        
        .intro {
            background: rgba(25, 30, 45, 0.7);
            border: 1px solid var(--plasma-orange);
            padding: 1.2rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            position: relative;
        }
        
        .intro::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--plasma-orange), transparent);
        }
        
        .cta-button {
            display: block;
            background: linear-gradient(135deg, var(--plasma-orange), #FF7700);
            color: #0A0F1D;
            padding: 0.8rem;
            border-radius: 4px;
            font-weight: 700;
            text-decoration: none;
            margin-top: 1rem;
            text-align: center;
            box-shadow: 0 0 10px rgba(255, 170, 0, 0.4);
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: rgba(20, 25, 40, 0.7);
            border: 1px solid var(--quantum-blue);
            border-radius: 8px;
            overflow-x: auto;
            display: block;
        }
        
        th {
            background: rgba(52, 152, 219, 0.2);
            color: var(--quantum-blue);
            padding: 0.8rem;
            text-align: left;
            border-bottom: 2px solid var(--quantum-blue);
        }
        
        td {
            padding: 0.8rem;
            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: 3px solid var(--plasma-orange);
            padding: 1rem;
            margin: 1.2rem 0;
        }
        
        .inventory-alert {
            position: relative;
            padding-left: 1.8rem;
            margin: 1rem 0;
        }
        
        .inventory-alert::before {
            content: "⚠";
            position: absolute;
            left: 0;
            color: var(--supernova-red);
            font-size: 1.1rem;
        }
        
        .delivery-pressure {
            display: inline-block;
            background: rgba(231, 76, 60, 0.1);
            padding: 0.2rem 0.5rem;
            border: 1px dashed var(--supernova-red);
            margin: 0.5rem 0;
        }
        
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--plasma-orange), transparent);
            margin: 2rem 0;
        }
        
        .supply-chain {
            position: relative;
            padding: 1.2rem;
            background: rgba(20, 25, 40, 0.7);
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        
        .supply-chain::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--plasma-orange), var(--quantum-blue));
        }
        
        .supply-chain .planet {
            display: inline-block;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--plasma-orange);
            box-shadow: 0 0 8px var(--plasma-orange);
            margin-right: 6px;
            position: relative;
            top: 2px;
        }
        
        ul {
            padding-left: 1.5rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        code {
            background: rgba(255, 170, 0, 0.1);
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
            display: inline-block;
            margin: 0.3rem 0;
        }
        
        @media (min-width: 768px) {
            body {
                padding: 1.5rem;
                max-width: 800px;
                margin: 0 auto;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.6rem;
            }
            
            h3 {
                font-size: 1.3rem;
            }
            
            .cta-button {
                display: inline-block;
                padding: 0.8rem 1.5rem;
            }
        }
    