
        :root {
            --plasma-orange: #FFAA00;
            --quantum-blue: #3498DB;
            --supernova-red: #E74C3C;
            --nebula-dark: #0A0F2B;
            --alloy-light: #E0E7FF;
        }
        body {
            background: radial-gradient(circle at center, #1A1F4B 0%, #0A0F2B 100%);
            color: #FFF;
            font-family: 'Segoe UI', system-ui;
            line-height: 1.6;
            padding: 2rem;
            position: relative;
            overflow-x: hidden;
        }
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }
        h1 {
            color: var(--plasma-orange);
            font-size: 2.8rem;
            text-shadow: 0 0 15px rgba(255, 170, 0, 0.7);
            border-bottom: 2px solid var(--plasma-orange);
            padding-bottom: 1rem;
            margin-top: 0;
            position: relative;
        }
        h1::after {
            content: "⚙️";
            position: absolute;
            right: 0;
            bottom: -15px;
            font-size: 2rem;
            filter: drop-shadow(0 0 8px var(--plasma-orange));
        }
        h2 {
            color: var(--alloy-light);
            background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.2), transparent);
            padding: 0.8rem;
            border-left: 4px solid var(--quantum-blue);
            margin-top: 2.5rem;
            position: relative;
        }
        h2::before {
            content: "🛰️";
            position: absolute;
            left: -30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
        }
        h3 {
            color: var(--plasma-orange);
            margin-top: 1.8rem;
            padding-left: 1.2rem;
            border-left: 2px dashed var(--plasma-orange);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: rgba(30, 35, 70, 0.7);
            border: 1px solid var(--quantum-blue);
            box-shadow: 0 0 20px rgba(52, 152, 219, 0.3);
        }
        th {
            background: rgba(255, 170, 0, 0.15);
            color: var(--plasma-orange);
            padding: 1rem;
            text-align: left;
            border-bottom: 2px solid var(--plasma-orange);
        }
        td {
            padding: 1rem;
            border-bottom: 1px solid rgba(52, 152, 219, 0.3);
        }
        tr:hover {
            background: rgba(52, 152, 219, 0.1);
        }
        .client-proof {
            background: rgba(255, 170, 0, 0.1);
            border-left: 4px solid var(--plasma-orange);
            padding: 1.2rem;
            margin: 1.5rem 0;
            position: relative;
        }
        .client-proof::before {
            content: "✨";
            position: absolute;
            left: -20px;
            top: 15px;
            font-size: 1.8rem;
            filter: drop-shadow(0 0 5px var(--plasma-orange));
        }
        .cta-button {
            background: linear-gradient(135deg, var(--plasma-orange), #FF5500);
            color: #0A0F2B !important;
            border: none;
            padding: 0.8rem 1.5rem;
            font-weight: bold;
            border-radius: 4px;
            cursor: pointer;
            display: inline-block;
            margin: 1rem 0;
            text-decoration: none;
            box-shadow: 0 0 15px rgba(255, 170, 0, 0.5);
            transition: all 0.3s ease;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(255, 170, 0, 0.8);
        }
        .inventory-planet {
            display: inline-block;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, var(--quantum-blue), transparent 70%);
            box-shadow: 0 0 10px var(--quantum-blue);
            margin-right: 10px;
            position: relative;
        }
        .inventory-planet::after {
            content: "";
            position: absolute;
            width: 40px;
            height: 8px;
            border-radius: 50%;
            border: 1px solid var(--alloy-light);
            top: -15px;
            left: -10px;
            opacity: 0.7;
        }
        .warning-planet {
            background: radial-gradient(circle at 30% 30%, var(--supernova-red), transparent 70%);
            box-shadow: 0 0 10px var(--supernova-red);
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 10px var(--supernova-red); }
            50% { box-shadow: 0 0 20px var(--supernova-red); }
            100% { box-shadow: 0 0 10px var(--supernova-red); }
        }
        .delivery-warp {
            font-weight: bold;
            color: var(--plasma-orange);
            position: relative;
            padding-left: 25px;
        }
        .delivery-warp::before {
            content: "⚡";
            position: absolute;
            left: 0;
            font-size: 1.3rem;
        }
    