| |
| *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } |
| html, body { height: 100%; overflow: hidden; } |
|
|
| body { |
| font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif; |
| background: linear-gradient(180deg, #000428 0%, #004e92 50%, #001a33 100%); |
| color: #c8d6e5; |
| overflow: hidden; |
| user-select: none; |
| } |
|
|
| |
| body::after { |
| content: ''; |
| position: fixed; bottom: -200px; left: 50%; transform: translateX(-50%); |
| width: 600px; height: 400px; |
| background: radial-gradient(ellipse at center, rgba(255,107,53,0.08) 0%, rgba(255,107,53,0.02) 40%, transparent 70%); |
| pointer-events: none; z-index: 0; |
| } |
|
|
| |
| #splash { |
| position: fixed; inset: 0; z-index: 1000; |
| display: flex; flex-direction: column; align-items: center; justify-content: center; |
| overflow: hidden; |
| animation: splashFade 0.8s ease-out 3.2s forwards; |
| } |
| @keyframes splashFade { to { opacity: 0; pointer-events: none; } } |
|
|
| |
| .splash-bg { |
| position: absolute; inset: 0; |
| background: #000005; |
| animation: bgDescent 3s ease-in-out forwards; |
| } |
| @keyframes bgDescent { |
| 0% { background: #000005; } |
| 25% { background: radial-gradient(ellipse at 50% 30%, #000428, #000005); } |
| 50% { background: radial-gradient(ellipse at 50% 50%, #001a3a, #000428); } |
| 75% { background: radial-gradient(ellipse at 50% 50%, #003b6f, #001a3a); } |
| 100% { background: radial-gradient(ellipse at 50% 60%, #ff6b35 0%, #001a3a 30%, #000428 100%); } |
| } |
|
|
| |
| .splash-stars { |
| position: absolute; inset: 0; |
| animation: starsFade 1.5s ease-out forwards; |
| } |
| @keyframes starsFade { to { opacity: 0.2; } } |
|
|
| .splash-logo-container { |
| position: relative; z-index: 2; |
| animation: logoDescent 2.8s cubic-bezier(0.22, 0.97, 0.36, 1) forwards; |
| transform: translateY(-120px); |
| opacity: 0; |
| } |
| @keyframes logoDescent { |
| 0% { transform: translateY(-120px) scale(0.6); opacity: 0; } |
| 20% { transform: translateY(-40px) scale(0.85); opacity: 0.3; } |
| 50% { transform: translateY(-10px) scale(0.95); opacity: 0.7; } |
| 75% { transform: translateY(0) scale(1.05); opacity: 1; } |
| 100% { transform: translateY(0) scale(1); opacity: 1; } |
| } |
|
|
| .splash-logo-img { |
| width: clamp(100px, 20vw, 180px); |
| height: auto; |
| filter: drop-shadow(0 0 30px rgba(0,212,255,0.3)); |
| animation: logoGlowPulse 2s ease-in-out infinite 1.5s; |
| } |
| @keyframes logoGlowPulse { |
| 0%, 100% { filter: drop-shadow(0 0 20px rgba(0,212,255,0.3)) brightness(1); } |
| 50% { filter: drop-shadow(0 0 40px rgba(255,51,102,0.4)) brightness(1.2); } |
| } |
|
|
| .splash-title { |
| font-size: clamp(1.8rem, 6vw, 3.5rem); |
| font-weight: 100; |
| letter-spacing: 16px; |
| color: transparent; |
| background: linear-gradient(135deg, #00d4ff 0%, #ffffff 50%, #ff6b35 100%); |
| -webkit-background-clip: text; |
| background-clip: text; |
| margin-top: 16px; |
| opacity: 0; |
| animation: titleReveal 0.6s ease-out 1.8s forwards; |
| } |
| @keyframes titleReveal { to { opacity: 1; } } |
|
|
| .splash-sub { |
| font-size: clamp(0.5rem, 1.2vw, 0.85rem); |
| font-weight: 200; |
| letter-spacing: 8px; |
| color: rgba(0, 212, 255, 0.4); |
| margin-top: 8px; |
| opacity: 0; |
| animation: titleReveal 0.6s ease-out 2.2s forwards; |
| } |
|
|
| |
| .splash-particle { |
| position: absolute; |
| border-radius: 50%; |
| background: #00d4ff; |
| animation: particleStreak 2.5s ease-in infinite; |
| } |
| @keyframes particleStreak { |
| 0% { transform: translateY(-20px) scale(1); opacity: 0; } |
| 20% { opacity: 0.6; } |
| 80% { opacity: 0.2; } |
| 100% { transform: translateY(100vh) scale(0); opacity: 0; } |
| } |
|
|
| |
| .bubble { |
| position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; |
| background: radial-gradient(circle at 30% 30%, rgba(0,212,255,0.08), transparent 70%); |
| animation: floatUp linear infinite; |
| } |
| @keyframes floatUp { |
| 0% { transform: translateY(0) scale(1); opacity: 0; } |
| 10% { opacity: 0.4; } |
| 90% { opacity: 0.1; } |
| 100% { transform: translateY(-100vh) scale(0.3); opacity: 0; } |
| } |
|
|
| |
| #app { |
| position: fixed; inset: 0; z-index: 1; |
| display: flex; |
| opacity: 0; |
| animation: appFadeIn 0.8s ease-out 3.2s forwards; |
| } |
| @keyframes appFadeIn { to { opacity: 1; } } |
|
|
| |
| #sidebar { |
| width: 260px; min-width: 260px; |
| display: flex; flex-direction: column; |
| background: rgba(255,255,255,0.03); |
| backdrop-filter: blur(20px); |
| -webkit-backdrop-filter: blur(20px); |
| border-right: 1px solid rgba(255,255,255,0.06); |
| border-radius: 0 24px 24px 0; |
| padding: 20px 0 12px; |
| gap: 2px; |
| z-index: 2; |
| } |
|
|
| .sidebar-logo-area { |
| display: flex; align-items: center; gap: 12px; |
| padding: 0 20px 20px; |
| border-bottom: 1px solid rgba(255,255,255,0.05); |
| margin-bottom: 12px; |
| } |
| .sidebar-logo-mini { |
| width: 36px; height: 42px; |
| animation: heartbeat 3s ease-in-out infinite; |
| } |
| @keyframes heartbeat { |
| 0%, 100% { transform: scale(1); } |
| 15% { transform: scale(1.08); } |
| 30% { transform: scale(1); } |
| 45% { transform: scale(1.05); } |
| 60% { transform: scale(1); } |
| } |
| .sidebar-brand-text { |
| font-size: 13px; font-weight: 600; letter-spacing: 4px; |
| color: rgba(0, 212, 255, 0.5); |
| } |
|
|
| .sidebar-tab { |
| display: flex; align-items: center; gap: 12px; |
| padding: 12px 20px; |
| cursor: pointer; |
| font-size: 13px; font-weight: 300; letter-spacing: 1px; |
| color: rgba(200, 214, 229, 0.45); |
| border: none; background: none; |
| transition: all 0.2s ease; |
| border-radius: 12px; |
| margin: 0 8px; |
| text-align: left; |
| position: relative; |
| } |
| .sidebar-tab:hover { |
| color: rgba(200, 214, 229, 0.8); |
| background: rgba(255,255,255,0.03); |
| box-shadow: 0 0 20px rgba(0,212,255,0.15); |
| } |
| .sidebar-tab.active { |
| color: #00d4ff; |
| background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,212,255,0.02)); |
| box-shadow: inset 0 0 20px rgba(0,212,255,0.1), 0 0 20px rgba(0,212,255,0.1); |
| } |
| .sidebar-tab .icon { font-size: 16px; width: 22px; text-align: center; } |
|
|
| |
| .sidebar-status { |
| margin-top: auto; |
| padding: 12px 16px; |
| border-top: 1px solid rgba(255,255,255,0.04); |
| font-size: 10px; |
| } |
| .status-row { |
| display: flex; justify-content: space-between; |
| padding: 2px 4px; |
| color: rgba(200, 214, 229, 0.25); |
| letter-spacing: 0.5px; |
| } |
| .status-row .label { } |
| .status-row .value { color: rgba(0, 212, 255, 0.4); } |
| .status-row .value.orange { color: rgba(255, 107, 53, 0.5); } |
|
|
| |
| #main { |
| flex: 1; |
| display: flex; flex-direction: column; |
| padding: 20px 24px 24px 20px; |
| overflow: hidden; |
| min-width: 0; |
| } |
| .panel { |
| display: none; |
| flex-direction: column; |
| height: 100%; |
| background: rgba(255,255,255,0.04); |
| backdrop-filter: blur(16px); |
| -webkit-backdrop-filter: blur(16px); |
| border-radius: 20px; |
| border: 1px solid rgba(255,255,255,0.08); |
| padding: 24px; |
| overflow: hidden; |
| animation: fadeSlideIn 0.4s ease-out; |
| } |
| @keyframes fadeSlideIn { |
| from { opacity: 0; transform: translateY(8px); } |
| to { opacity: 1; transform: translateY(0); } |
| } |
| .panel.active { display: flex; } |
|
|
| .panel-header { |
| font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; |
| color: rgba(0, 212, 255, 0.4); |
| margin-bottom: 16px; |
| padding-bottom: 12px; |
| border-bottom: 1px solid rgba(255,255,255,0.04); |
| } |
|
|
| |
| .editor-wrapper { |
| flex: 1; |
| display: flex; |
| background: rgba(0,0,0,0.35); |
| border-radius: 16px; |
| overflow: hidden; |
| border: 1px solid rgba(255,255,255,0.05); |
| } |
| .editor-gutter { |
| width: 52px; min-width: 52px; |
| background: rgba(0,0,0,0.25); |
| padding: 16px 10px; |
| text-align: right; |
| font-family: 'Fira Code', 'Cascadia Code', monospace; |
| font-size: 13px; line-height: 1.6; |
| color: rgba(255,255,255,0.1); |
| user-select: none; |
| overflow: hidden; |
| } |
| .editor-area { |
| flex: 1; |
| background: transparent; |
| border: none; outline: none; |
| padding: 16px; |
| font-family: 'Fira Code', 'Cascadia Code', monospace; |
| font-size: 13px; line-height: 1.6; |
| color: #c8d6e5; |
| resize: none; |
| tab-size: 4; |
| caret-color: #00d4ff; |
| } |
| .editor-area::placeholder { color: rgba(255,255,255,0.08); } |
|
|
| .editor-actions { |
| display: flex; gap: 8px; |
| margin-top: 12px; |
| } |
| .btn { |
| padding: 8px 20px; |
| border: 1px solid rgba(255,255,255,0.08); |
| border-radius: 16px; |
| background: rgba(255,255,255,0.04); |
| color: #c8d6e5; |
| font-size: 12px; font-weight: 400; letter-spacing: 1px; |
| cursor: pointer; |
| transition: all 0.2s ease; |
| } |
| .btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(0,212,255,0.2); } |
| .btn-primary { |
| background: rgba(0,212,255,0.1); |
| border-color: rgba(0,212,255,0.2); |
| color: #00d4ff; |
| } |
| .btn-primary:hover { background: rgba(0,212,255,0.2); } |
| .btn-fire { |
| background: rgba(255,107,53,0.1); |
| border-color: rgba(255,107,53,0.2); |
| color: #ff6b35; |
| } |
| .btn-fire:hover { |
| background: rgba(255,107,53,0.2); |
| box-shadow: 0 4px 20px rgba(255,107,53,0.15); |
| transform: translateY(-1px); |
| } |
|
|
| |
| .forge-output { |
| flex: 1; |
| display: flex; flex-direction: column; gap: 12px; |
| overflow-y: auto; |
| padding-right: 8px; |
| } |
| .forge-output::-webkit-scrollbar { width: 4px; } |
| .forge-output::-webkit-scrollbar-track { background: transparent; } |
| .forge-output::-webkit-scrollbar-thumb { background: rgba(0,212,255,0.15); border-radius: 8px; } |
|
|
| .forge-card { |
| background: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.15)); |
| border-radius: 16px; |
| padding: 16px 20px; |
| border: 1px solid rgba(255,255,255,0.04); |
| transition: all 0.25s ease; |
| cursor: pointer; |
| } |
| .forge-card:hover { |
| transform: translateY(-4px); |
| box-shadow: 0 8px 32px rgba(255,107,53,0.15); |
| border-color: rgba(255,107,53,0.2); |
| } |
| .forge-card-header { |
| display: flex; align-items: center; gap: 12px; |
| margin-bottom: 6px; |
| } |
| .forge-badge { |
| font-size: 9px; padding: 2px 10px; border-radius: 20px; |
| font-weight: 600; letter-spacing: 1px; |
| } |
| .badge-success { background: rgba(0,255,136,0.12); color: #00ff88; } |
| .badge-pending { background: rgba(255,107,53,0.12); color: #ff6b35; } |
| .badge-fail { background: rgba(255,51,102,0.12); color: #ff3366; } |
|
|
| .forge-placeholder { |
| flex: 1; display: flex; flex-direction: column; |
| align-items: center; justify-content: center; gap: 12px; |
| color: rgba(255,255,255,0.1); |
| font-size: 13px; font-weight: 200; letter-spacing: 2px; |
| } |
|
|
| |
| .terminal-wrapper { |
| flex: 1; |
| background: rgba(0,0,0,0.5); |
| border-radius: 16px; |
| padding: 16px; |
| font-family: 'Fira Code', 'Cascadia Code', monospace; |
| font-size: 13px; line-height: 1.7; |
| overflow-y: auto; |
| border: 1px solid rgba(255,255,255,0.04); |
| display: flex; |
| flex-direction: column; |
| } |
| .terminal-wrapper::-webkit-scrollbar { width: 4px; } |
| .terminal-wrapper::-webkit-scrollbar-track { background: transparent; } |
| .terminal-wrapper::-webkit-scrollbar-thumb { background: rgba(0,255,136,0.15); border-radius: 8px; } |
|
|
| #terminal-output { flex: 1; overflow-y: auto; min-height: 0; } |
| .terminal-line { color: rgba(0,255,136,0.7); word-break: break-all; padding: 1px 0; } |
| .terminal-line.prompt { color: #00ff88; } |
| .terminal-line.error { color: #ff3366; } |
| .terminal-line.info { color: rgba(200,214,229,0.4); } |
| .terminal-line.chimera { color: #00d4ff; } |
| .terminal-line.forge { color: #ff6b35; } |
| .terminal-line.rabbit { color: #ffffff; } |
| .terminal-line.dream { color: #c084fc; } |
| .terminal-line.test { color: #00ff88; } |
| .terminal-line.psycho-manifesto { |
| color: #ff3366; |
| font-weight: 600; |
| font-size: 14px; |
| letter-spacing: 1px; |
| text-shadow: 0 0 20px rgba(255,51,102,0.3); |
| } |
| .terminal-line.psycho-banner { |
| color: #ff3366; |
| font-weight: 700; |
| font-size: 13px; |
| letter-spacing: 2px; |
| text-shadow: 0 0 30px rgba(255,51,102,0.4); |
| } |
| .terminal-line.psycho-summary { |
| color: #ff6b35; |
| font-weight: 600; |
| font-size: 12px; |
| letter-spacing: 1px; |
| text-shadow: 0 0 20px rgba(255,107,53,0.3); |
| } |
|
|
| .terminal-input-line { |
| display: flex; align-items: center; gap: 8px; |
| margin-top: 8px; padding-top: 8px; |
| border-top: 1px solid rgba(255,255,255,0.03); |
| } |
| .terminal-prompt { color: #00ff88; font-size: 13px; white-space: nowrap; } |
| .terminal-input { |
| flex: 1; |
| background: transparent; border: none; outline: none; |
| color: #00ff88; |
| font-family: 'Fira Code', 'Cascadia Code', monospace; |
| font-size: 13px; |
| caret-color: #00ff88; |
| } |
| .terminal-input::placeholder { color: rgba(0,255,136,0.12); } |
|
|
| |
| .vault-tree { |
| flex: 1; |
| overflow-y: auto; |
| padding: 4px 0; |
| } |
| .vault-tree::-webkit-scrollbar { width: 4px; } |
| .vault-tree::-webkit-scrollbar-track { background: transparent; } |
| .vault-tree::-webkit-scrollbar-thumb { background: rgba(0,212,255,0.15); border-radius: 8px; } |
|
|
| .tree-item { |
| display: flex; align-items: center; gap: 8px; |
| padding: 5px 12px; |
| border-radius: 12px; |
| cursor: pointer; |
| font-size: 13px; font-weight: 300; |
| color: rgba(200,214,229,0.5); |
| transition: all 0.2s; |
| } |
| .tree-item:hover { background: rgba(255,255,255,0.04); color: rgba(200,214,229,0.85); } |
| .tree-item.folder { color: rgba(0,212,255,0.5); } |
| .tree-item.file { padding-left: 32px; } |
| .tree-item .icon { font-size: 14px; width: 18px; text-align: center; } |
|
|
| .vault-upload-zone { |
| margin-top: 12px; |
| padding: 24px; |
| border: 1px dashed rgba(255,255,255,0.1); |
| border-radius: 12px; |
| text-align: center; |
| font-size: 12px; color: rgba(255,255,255,0.2); letter-spacing: 1px; |
| transition: all 0.2s; |
| cursor: pointer; |
| } |
| .vault-upload-zone:hover { |
| border-color: rgba(0,212,255,0.3); |
| background: rgba(0,212,255,0.03); |
| color: rgba(0,212,255,0.3); |
| } |
|
|
| |
| #dream-canvas { |
| flex: 1; |
| position: relative; |
| background: rgba(0,0,0,0.25); |
| border-radius: 16px; |
| overflow: hidden; |
| border: 1px solid rgba(255,255,255,0.04); |
| } |
| .nanobot { |
| position: absolute; |
| border-radius: 50%; |
| transition: box-shadow 0.3s; |
| } |
| .nanobot-trail { |
| position: absolute; |
| border-radius: 50%; |
| pointer-events: none; |
| animation: trailFade 2s ease-out infinite; |
| } |
| @keyframes trailFade { |
| 0% { transform: scale(1); opacity: 0.4; } |
| 100% { transform: scale(0); opacity: 0; } |
| } |
| .nanobot-line { |
| position: absolute; |
| height: 1px; |
| transform-origin: left center; |
| pointer-events: none; |
| opacity: 0; |
| transition: opacity 0.3s; |
| } |
|
|
| .dream-status { |
| position: absolute; bottom: 14px; left: 16px; right: 16px; |
| display: flex; justify-content: space-between; |
| font-size: 10px; font-weight: 200; letter-spacing: 2px; |
| color: rgba(0,212,255,0.2); |
| pointer-events: none; |
| } |
|
|
| |
| .mesh-grid { |
| flex: 1; |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| grid-template-rows: auto 1fr; |
| gap: 12px; |
| overflow: hidden; |
| min-height: 0; |
| } |
| .mesh-section { |
| background: rgba(0,0,0,0.2); |
| border-radius: 16px; |
| padding: 16px; |
| border: 1px solid rgba(255,255,255,0.04); |
| overflow-y: auto; |
| } |
| .mesh-section::-webkit-scrollbar { width: 4px; } |
| .mesh-section::-webkit-scrollbar-track { background: transparent; } |
| .mesh-section::-webkit-scrollbar-thumb { background: rgba(0,212,255,0.15); border-radius: 8px; } |
| .mesh-section-title { |
| font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; |
| color: rgba(0,212,255,0.3); |
| margin-bottom: 12px; |
| padding-bottom: 8px; |
| border-bottom: 1px solid rgba(255,255,255,0.04); |
| } |
| #mesh-identity { grid-column: 1; } |
| #mesh-share { grid-column: 2; } |
| #mesh-discovery { grid-column: 1; grid-row: 2; } |
| #mesh-insights { grid-column: 2; grid-row: 2; } |
| .mesh-feed-section { display: flex; flex-direction: column; } |
| .mesh-feed, .mesh-insights-content { flex: 1; overflow-y: auto; min-height: 0; } |
| .mesh-id-row { |
| display: flex; justify-content: space-between; |
| padding: 4px 0; |
| font-size: 12px; |
| border-bottom: 1px solid rgba(255,255,255,0.02); |
| } |
| .mesh-id-label { color: rgba(200,214,229,0.35); font-weight: 300; letter-spacing: 1px; } |
| .mesh-id-value { color: #c8d6e5; font-family: 'Fira Code', monospace; font-size: 11px; } |
| .mesh-key { color: rgba(0,212,255,0.4); font-size: 10px; } |
| .mesh-status-badge { |
| margin-top: 10px; |
| font-size: 10px; letter-spacing: 2px; |
| color: #00ff88; |
| text-align: center; |
| padding: 6px; |
| border-radius: 12px; |
| background: rgba(0,255,136,0.06); |
| border: 1px solid rgba(0,255,136,0.12); |
| } |
| .mesh-toggle { |
| display: flex; align-items: center; gap: 10px; |
| padding: 6px 0; |
| font-size: 12px; font-weight: 300; |
| color: rgba(200,214,229,0.5); |
| cursor: pointer; |
| transition: color 0.2s; |
| } |
| .mesh-toggle:hover { color: #c8d6e5; } |
| .mesh-toggle input[type="checkbox"] { |
| appearance: none; width: 14px; height: 14px; |
| border: 1px solid rgba(255,255,255,0.15); |
| border-radius: 4px; |
| background: rgba(0,0,0,0.3); |
| cursor: pointer; |
| transition: all 0.2s; |
| flex-shrink: 0; |
| } |
| .mesh-toggle input[type="checkbox"]:checked { |
| background: rgba(0,212,255,0.2); |
| border-color: #00d4ff; |
| box-shadow: 0 0 8px rgba(0,212,255,0.2); |
| } |
| .mesh-shared-count { |
| margin-top: 8px; |
| font-size: 10px; text-align: center; |
| color: rgba(200,214,229,0.25); |
| letter-spacing: 1px; |
| } |
| .mesh-feed-empty { |
| display: flex; align-items: center; justify-content: center; |
| height: 100%; |
| font-size: 11px; font-weight: 200; |
| color: rgba(200,214,229,0.15); |
| text-align: center; |
| padding: 20px; |
| letter-spacing: 0.5px; |
| line-height: 1.6; |
| } |
| .mesh-feed-item { |
| padding: 10px 12px; |
| border-radius: 12px; |
| background: rgba(255,255,255,0.02); |
| border: 1px solid rgba(255,255,255,0.03); |
| margin-bottom: 6px; |
| transition: all 0.2s; |
| cursor: pointer; |
| } |
| .mesh-feed-item:hover { |
| background: rgba(0,212,255,0.04); |
| border-color: rgba(0,212,255,0.1); |
| } |
| .mesh-feed-item-header { |
| display: flex; justify-content: space-between; align-items: center; |
| margin-bottom: 4px; |
| } |
| .mesh-feed-item-name { |
| font-size: 12px; font-weight: 400; |
| color: #c8d6e5; |
| } |
| .mesh-feed-item-node { |
| font-size: 9px; font-family: 'Fira Code', monospace; |
| color: rgba(0,212,255,0.3); |
| } |
| .mesh-feed-item-meta { |
| display: flex; gap: 12px; |
| font-size: 10px; |
| color: rgba(200,214,229,0.3); |
| } |
| .mesh-insight-card { |
| padding: 10px 12px; |
| border-radius: 12px; |
| background: rgba(255,107,53,0.04); |
| border: 1px solid rgba(255,107,53,0.08); |
| margin-bottom: 6px; |
| cursor: pointer; |
| transition: all 0.2s; |
| } |
| .mesh-insight-card:hover { |
| background: rgba(255,107,53,0.08); |
| border-color: rgba(255,107,53,0.15); |
| } |
| .mesh-insight-card-title { |
| font-size: 12px; font-weight: 400; |
| color: #c8d6e5; |
| margin-bottom: 2px; |
| } |
| .mesh-insight-card-desc { |
| font-size: 10px; |
| color: rgba(200,214,229,0.4); |
| } |
|
|
| |
| .device-grid { |
| flex: 1; |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| grid-template-rows: auto 1fr; |
| gap: 12px; |
| overflow: hidden; |
| min-height: 0; |
| } |
| .device-section { |
| background: rgba(0,0,0,0.2); |
| border-radius: 16px; |
| padding: 16px; |
| border: 1px solid rgba(255,255,255,0.04); |
| overflow-y: auto; |
| } |
| .device-section::-webkit-scrollbar { width: 4px; } |
| .device-section::-webkit-scrollbar-track { background: transparent; } |
| .device-section::-webkit-scrollbar-thumb { background: rgba(0,212,255,0.15); border-radius: 8px; } |
| .device-section-title { |
| font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; |
| color: rgba(0,212,255,0.3); |
| margin-bottom: 12px; |
| padding-bottom: 8px; |
| border-bottom: 1px solid rgba(255,255,255,0.04); |
| } |
| #device-status { grid-column: 1; grid-row: 1; } |
| #device-build { grid-column: 2; grid-row: 1 / 3; display: flex; flex-direction: column; } |
| #device-apk { grid-column: 1; grid-row: 2; } |
| .device-row { |
| display: flex; justify-content: space-between; |
| padding: 4px 0; |
| font-size: 12px; |
| border-bottom: 1px solid rgba(255,255,255,0.02); |
| } |
| .device-label { color: rgba(200,214,229,0.35); font-weight: 300; letter-spacing: 1px; } |
| .device-value { color: #c8d6e5; font-family: 'Fira Code', monospace; font-size: 11px; } |
| .device-value.good { color: #00ff88; } |
| .device-value.bad { color: #ff3366; } |
| .device-field { margin-bottom: 8px; } |
| .device-field-label { |
| display: block; font-size: 10px; font-weight: 300; letter-spacing: 1px; |
| color: rgba(200,214,229,0.35); margin-bottom: 4px; |
| } |
| .device-input { |
| width: 100%; padding: 6px 10px; |
| background: rgba(0,0,0,0.35); |
| border: 1px solid rgba(255,255,255,0.08); |
| border-radius: 8px; |
| color: #c8d6e5; |
| font-family: 'Fira Code', monospace; |
| font-size: 12px; |
| outline: none; |
| transition: border-color 0.2s; |
| } |
| .device-input:focus { border-color: rgba(0,212,255,0.3); } |
| .device-actions { display: flex; gap: 8px; margin-top: 4px; } |
| .device-output { |
| flex: 1; margin-top: 8px; |
| background: rgba(0,0,0,0.3); |
| border-radius: 12px; |
| padding: 12px; |
| font-family: 'Fira Code', monospace; |
| font-size: 11px; line-height: 1.6; |
| overflow-y: auto; |
| min-height: 80px; |
| border: 1px solid rgba(255,255,255,0.04); |
| } |
| .device-output-empty { |
| color: rgba(200,214,229,0.15); |
| text-align: center; |
| padding: 20px; |
| font-size: 11px; |
| } |
| .device-output-line { color: rgba(200,214,229,0.6); padding: 1px 0; white-space: pre-wrap; word-break: break-all; } |
| .device-output-line.success { color: #00ff88; } |
| .device-output-line.error { color: #ff3366; } |
| .device-output-line.info { color: rgba(0,212,255,0.5); } |
| .device-apk-status { |
| font-size: 11px; font-weight: 300; |
| color: rgba(200,214,229,0.3); |
| padding: 4px 0; |
| } |
| .device-verify-output { |
| margin-top: 8px; |
| font-family: 'Fira Code', monospace; |
| font-size: 10px; |
| color: rgba(200,214,229,0.4); |
| line-height: 1.5; |
| } |
|
|
| |
| .onboarding-overlay { |
| position: fixed; inset: 0; z-index: 9999; |
| display: none; |
| align-items: center; justify-content: center; |
| background: rgba(0,0,10,0.85); |
| backdrop-filter: blur(12px); |
| -webkit-backdrop-filter: blur(12px); |
| animation: onboardingFadeIn 0.6s ease-out; |
| } |
| .onboarding-overlay.visible { display: flex; } |
| @keyframes onboardingFadeIn { from { opacity: 0; } to { opacity: 1; } } |
|
|
| .onboarding-card { |
| width: min(700px, 90vw); |
| max-height: 85vh; |
| background: linear-gradient(180deg, rgba(0,4,40,0.95), rgba(0,0,20,0.98)); |
| border: 1px solid rgba(0,212,255,0.12); |
| border-radius: 24px; |
| display: flex; flex-direction: column; |
| overflow: hidden; |
| box-shadow: 0 0 80px rgba(0,212,255,0.08), 0 0 200px rgba(0,0,0,0.5); |
| } |
|
|
| .onboarding-header { |
| text-align: center; |
| padding: 28px 32px 20px; |
| border-bottom: 1px solid rgba(255,255,255,0.04); |
| flex-shrink: 0; |
| } |
| .onboarding-logo { |
| width: 64px; height: auto; |
| margin-bottom: 12px; |
| filter: drop-shadow(0 0 20px rgba(0,212,255,0.2)); |
| } |
| .onboarding-title { |
| font-size: 20px; font-weight: 200; letter-spacing: 8px; |
| color: #00d4ff; |
| } |
| .onboarding-subtitle { |
| font-size: 10px; font-weight: 200; letter-spacing: 6px; |
| color: rgba(0,212,255,0.3); |
| margin-top: 6px; |
| } |
|
|
| .onboarding-body { |
| flex: 1; overflow-y: auto; |
| padding: 20px 32px; |
| } |
| .onboarding-body::-webkit-scrollbar { width: 4px; } |
| .onboarding-body::-webkit-scrollbar-track { background: transparent; } |
| .onboarding-body::-webkit-scrollbar-thumb { background: rgba(0,212,255,0.15); border-radius: 8px; } |
|
|
| .onboarding-section { margin-bottom: 18px; } |
| .onboarding-section-title { |
| font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; |
| color: rgba(0,212,255,0.5); |
| margin-bottom: 6px; |
| } |
| .onboarding-text { |
| font-size: 12px; line-height: 1.7; |
| color: rgba(200,214,229,0.7); |
| font-weight: 300; |
| } |
| .onboarding-text strong { color: #c8d6e5; font-weight: 400; } |
| .onboarding-text code { |
| font-family: 'Fira Code', monospace; |
| font-size: 11px; |
| color: #00ff88; |
| background: rgba(0,255,136,0.06); |
| padding: 1px 6px; |
| border-radius: 4px; |
| } |
|
|
| .onboarding-list { margin-top: 8px; } |
| .onboarding-list-item { |
| display: flex; align-items: flex-start; gap: 10px; |
| padding: 4px 0; |
| font-size: 12px; line-height: 1.5; |
| color: rgba(200,214,229,0.6); |
| font-weight: 300; |
| } |
| .onboarding-bullet { |
| width: 18px; height: 18px; min-width: 18px; |
| border-radius: 50%; |
| background: rgba(0,212,255,0.08); |
| border: 1px solid rgba(0,212,255,0.15); |
| display: flex; align-items: center; justify-content: center; |
| font-size: 9px; font-weight: 600; |
| color: rgba(0,212,255,0.5); |
| } |
|
|
| .onboarding-footer { |
| display: flex; align-items: center; justify-content: space-between; |
| padding: 16px 32px 20px; |
| border-top: 1px solid rgba(255,255,255,0.04); |
| flex-shrink: 0; |
| } |
| .onboarding-dismiss-label { |
| display: flex; align-items: center; gap: 8px; |
| font-size: 11px; font-weight: 300; |
| color: rgba(200,214,229,0.3); |
| cursor: pointer; |
| } |
| .onboarding-dismiss-label input[type="checkbox"] { |
| appearance: none; width: 13px; height: 13px; |
| border: 1px solid rgba(255,255,255,0.12); |
| border-radius: 3px; |
| background: rgba(0,0,0,0.3); |
| cursor: pointer; |
| transition: all 0.2s; |
| } |
| .onboarding-dismiss-label input[type="checkbox"]:checked { |
| background: rgba(0,212,255,0.2); |
| border-color: #00d4ff; |
| } |
|
|
| |
| ::-webkit-scrollbar { width: 4px; } |
| ::-webkit-scrollbar-track { background: transparent; } |
| ::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.06); border-radius: 8px; } |
|
|