:root { --bg-deep: #050510; --glass-panel: rgba(20, 25, 40, 0.65); --glass-border: 1px solid rgba(255, 255, 255, 0.08); --accent-core: #6c63ff; --accent-glow: rgba(108, 99, 255, 0.6); --text-cyber: #e0e6ed; --success-matrix: #00ff9d; --warning-matrix: #ffce00; --danger-matrix: #ff0055; } body { background-color: var(--bg-deep); background-image: radial-gradient(circle at 10% 20%, rgba(108, 99, 255, 0.1) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(0, 255, 157, 0.05) 0%, transparent 40%); overflow-x: hidden; } .terminal-wrapper { min-height: 100vh; padding-top: 5rem; padding-bottom: 5rem; position: relative; } .blueprint-card { background: var(--glass-panel); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: var(--glass-border); border-radius: 24px; padding: 3rem; height: 100%; position: relative; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.3); } .blueprint-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 40px 40px; z-index: -1; opacity: 0.5; } .package-identity { border-bottom: 1px dashed rgba(255,255,255,0.15); padding-bottom: 2rem; margin-bottom: 2rem; } .pkg-title { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 3.5rem; background: linear-gradient(135deg, #fff 0%, var(--text-cyber) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -1px; } .pkg-badge { font-family: monospace; padding: 0.5rem 1rem; border-radius: 4px; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; border: 1px solid currentColor; } .data-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; } .data-module { background: rgba(0,0,0,0.2); padding: 1.5rem; border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s ease; } .data-module:hover { background: rgba(108, 99, 255, 0.1); border-color: var(--accent-core); transform: translateY(-5px); } .data-label { color: rgba(255,255,255,0.5); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; display: block; } .data-value { color: white; font-size: 1.5rem; font-weight: 700; font-family: monospace; } .fleet-header { font-size: 1rem; text-transform: uppercase; letter-spacing: 3px; color: var(--accent-core); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; } .fleet-header::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--accent-core), transparent); } .drone-unit { display: flex; align-items: center; background: rgba(255,255,255,0.03); border-radius: 12px; padding: 1rem; transition: 0.3s; border: 1px solid transparent; } .drone-unit:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); } .drone-thumb { width: 60px; height: 60px; border-radius: 10px; background: #000; display: flex; align-items: center; justify-content: center; margin-right: 1rem; object-fit: cover; } .control-deck { background: #13131f; border: 1px solid var(--accent-core); border-radius: 24px; padding: 2.5rem; position: sticky; top: 100px; box-shadow: 0 0 40px rgba(108, 99, 255, 0.15); overflow: hidden; } .control-deck::before { content: ''; position: absolute; top: -50%; left: 0; width: 100%; height: 20px; background: linear-gradient(180deg, transparent, var(--accent-core), transparent); opacity: 0.2; animation: cyberScan 3s linear infinite; pointer-events: none; } @keyframes cyberScan { 0% { top: -10%; } 100% { top: 110%; } } .deck-title { color: white; font-weight: 800; letter-spacing: 1px; margin-bottom: 2rem; display: flex; align-items: center; justify-content: space-between; } .status-indicator { font-size: 0.7rem; font-family: monospace; color: var(--success-matrix); display: flex; align-items: center; gap: 6px; } .blink-dot { width: 8px; height: 8px; background: var(--success-matrix); border-radius: 50%; box-shadow: 0 0 8px var(--success-matrix); animation: blinker 1.5s infinite; } @keyframes blinker { 50% { opacity: 0.3; } } .cyber-input-group { margin-bottom: 2rem; } .cyber-input-wrapper { position: relative; } .cyber-input { background: #090910; border: 1px solid #2d2d3d; color: white; width: 100%; height: 70px; font-size: 2rem; font-family: monospace; font-weight: bold; padding: 0 1.5rem; border-radius: 12px; transition: 0.3s; } .cyber-input:focus { outline: none; border-color: var(--accent-core); box-shadow: 0 0 20px rgba(108, 99, 255, 0.3); } .input-suffix { position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%); color: #555; font-weight: bold; pointer-events: none; } .cyber-range { width: 100%; height: 4px; background: #2d2d3d; outline: none; -webkit-appearance: none; margin-top: 1.5rem; border-radius: 2px; } .cyber-range::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; background: var(--accent-core); border: 2px solid white; border-radius: 50%; cursor: pointer; box-shadow: 0 0 15px var(--accent-core); transition: transform 0.1s; } .cyber-range::-webkit-slider-thumb:hover { transform: scale(1.2); } .roi-monitor { background: rgba(0, 255, 157, 0.02); border: 1px solid rgba(0, 255, 157, 0.1); border-radius: 12px; padding: 1.5rem; margin-bottom: 2rem; } .roi-line { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-family: monospace; } .roi-line:last-child { margin-bottom: 0; padding-top: 1rem; border-top: 1px dashed rgba(0, 255, 157, 0.2); font-size: 1.2rem; font-weight: 800; color: var(--success-matrix); } .roi-label { color: #666; font-size: 0.9rem; } .roi-val { color: white; font-weight: 600; } .btn-engage { background: var(--accent-core); color: white; width: 100%; padding: 1.2rem; border: none; border-radius: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; font-size: 1.1rem; position: relative; overflow: hidden; transition: 0.3s; } .btn-engage:hover { background: #564fd8; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4); } .alert-cyber { background: rgba(255, 0, 85, 0.1); border: 1px solid var(--danger-matrix); color: #ff8fa3; border-radius: 12px; padding: 1rem; font-size: 0.9rem; display: flex; align-items: center; gap: 1rem; } @media (max-width: 991px) { .control-deck { position: relative; top: 0; margin-top: 2rem; } .pkg-title { font-size: 2.5rem; } }