Spaces:
Running on Zero
Running on Zero
| /* ========================================================================== | |
| MALLOC() [CORE_OS_v2.4] — Futuristic Cyber-Minimalism Design System | |
| Cinematic Dark HUD, Neon Magenta & Cyber Cyan Glows, Precision Tech Borders | |
| ========================================================================== */ | |
| @import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600&family=JetBrains+Mono:wght@400;500;700;800&family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap'); | |
| :root { | |
| /* Core Cyber Palette */ | |
| --bg-primary: #0e0e11; | |
| --bg-secondary: #131318; | |
| --bg-tertiary: #191920; | |
| --bg-card: rgba(22, 22, 30, 0.88); | |
| --bg-card-hover: rgba(28, 28, 38, 0.96); | |
| --bg-input: rgba(14, 14, 18, 0.92); | |
| /* Cyber Borders */ | |
| --border-color: rgba(242, 175, 255, 0.18); | |
| --border-subtle: rgba(255, 255, 255, 0.08); | |
| --border-hover: rgba(242, 175, 255, 0.45); | |
| --border-focus: #f2afff; | |
| --border-cyan: rgba(125, 244, 255, 0.4); | |
| /* Typography */ | |
| --text-primary: #f0edf0; | |
| --text-secondary: #d6bfd6; | |
| --text-muted: #8e7a90; | |
| --text-dim: #5c4e5e; | |
| /* Neon Accents */ | |
| --accent-primary: #f2afff; /* Neon Magenta / Orchid */ | |
| --accent-secondary: #7df4ff; /* Neon Cyber Cyan */ | |
| --accent-cyan: #00eefc; | |
| --accent-purple: #d953ff; | |
| --accent-gradient: linear-gradient(135deg, #f2afff 0%, #d953ff 50%, #7df4ff 100%); | |
| --accent-glow: rgba(242, 175, 255, 0.25); | |
| --cyan-glow: rgba(125, 244, 255, 0.25); | |
| /* HUD Status Signals */ | |
| --success: #7df4ff; | |
| --success-glow: rgba(125, 244, 255, 0.4); | |
| --warning: #ffd180; | |
| --danger: #ff506e; | |
| --danger-glow: rgba(255, 80, 110, 0.4); | |
| --info: #00eefc; | |
| /* Radii */ | |
| --radius-xs: 2px; | |
| --radius-sm: 4px; | |
| --radius-md: 6px; | |
| --radius-lg: 8px; | |
| --radius-full: 9999px; | |
| /* Fonts */ | |
| --font-display: 'Sora', sans-serif; | |
| --font-body: 'Geist', 'Inter', sans-serif; | |
| --font-mono: 'JetBrains Mono', monospace; | |
| } | |
| /* ========================================================================== | |
| Color & Layout Direct Fallback Classes (for Tailwind & scripts) | |
| ========================================================================== */ | |
| .bg-background { background-color: var(--bg-primary) ; } | |
| .bg-surface-container { background-color: var(--bg-secondary) ; } | |
| .bg-surface-container-low { background-color: var(--bg-primary) ; } | |
| .bg-surface-container-lowest { background-color: #09090c ; } | |
| .bg-surface-container-high { background-color: var(--bg-tertiary) ; } | |
| .bg-surface-container-highest { background-color: #26252f ; } | |
| .text-on-background { color: var(--text-primary) ; } | |
| .text-on-surface { color: var(--text-primary) ; } | |
| .text-on-surface-variant { color: var(--text-secondary) ; } | |
| .text-primary { color: var(--accent-primary) ; } | |
| .text-secondary { color: var(--accent-secondary) ; } | |
| .text-error { color: var(--danger) ; } | |
| .border-outline-variant { border-color: rgba(242, 175, 255, 0.15) ; } | |
| .font-display-lg { font-family: var(--font-display) ; font-weight: 800 ; } | |
| .font-headline-lg { font-family: var(--font-display) ; font-weight: 700 ; } | |
| .font-label-mono { font-family: var(--font-mono) ; } | |
| .font-body-md { font-family: var(--font-body) ; } | |
| *, *::before, *::after { | |
| box-sizing: border-box; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| body { | |
| font-family: var(--font-body); | |
| background-color: var(--bg-primary); | |
| color: var(--text-primary); | |
| min-height: 100vh; | |
| display: flex; | |
| overflow: hidden; | |
| letter-spacing: -0.01em; | |
| -webkit-font-smoothing: antialiased; | |
| } | |
| /* Subtle Technical Cyber Scanline & Grid */ | |
| .bg-scanlines { | |
| background-image: | |
| linear-gradient(rgba(242, 175, 255, 0.035) 1px, transparent 1px), | |
| linear-gradient(90deg, rgba(125, 244, 255, 0.025) 1px, transparent 1px); | |
| background-size: 28px 28px; | |
| background-position: -1px -1px; | |
| } | |
| /* ========================================================================== | |
| Precision Cyber Corner Details | |
| ========================================================================== */ | |
| .tech-card, .tech-corner, .job-card-structured, .memory-card, .glass-card { | |
| position: relative; | |
| border: 1px solid var(--border-color); | |
| background: var(--bg-card); | |
| backdrop-filter: blur(12px); | |
| -webkit-backdrop-filter: blur(12px); | |
| border-radius: var(--radius-sm); | |
| transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1); | |
| } | |
| .tech-card::before, .tech-corner::before, .job-card-structured::before, .memory-card::before { | |
| content: ''; | |
| position: absolute; | |
| top: -1px; | |
| right: -1px; | |
| width: 8px; | |
| height: 8px; | |
| border-top: 2px solid var(--accent-primary); | |
| border-right: 2px solid var(--accent-primary); | |
| z-index: 10; | |
| pointer-events: none; | |
| } | |
| .tech-card-secondary::before { | |
| border-top: 2px solid var(--accent-secondary) ; | |
| border-right: 2px solid var(--accent-secondary) ; | |
| } | |
| .cyber-border { | |
| border: 1px solid rgba(242, 175, 255, 0.18); | |
| background-color: var(--bg-secondary); | |
| } | |
| /* ========================================================================== | |
| Crisp Neon Glow Effects (Precision HUD) | |
| ========================================================================== */ | |
| .glow-primary { | |
| box-shadow: 0 0 16px -2px rgba(242, 175, 255, 0.28); | |
| border-color: rgba(242, 175, 255, 0.4) ; | |
| } | |
| .text-glow-primary { | |
| text-shadow: 0 0 8px rgba(242, 175, 255, 0.65), 0 0 18px rgba(217, 83, 255, 0.35); | |
| } | |
| .glow-secondary { | |
| box-shadow: 0 0 16px -2px rgba(125, 244, 255, 0.28); | |
| border-color: rgba(125, 244, 255, 0.45) ; | |
| } | |
| .text-glow-secondary { | |
| text-shadow: 0 0 8px rgba(125, 244, 255, 0.7), 0 0 18px rgba(0, 238, 252, 0.35); | |
| } | |
| .glow-error { | |
| box-shadow: 0 0 16px -2px rgba(255, 80, 110, 0.3); | |
| border-color: var(--danger) ; | |
| } | |
| .glow-cyan { text-shadow: 0 0 6px rgba(0, 238, 252, 0.6); } | |
| .glow-text { text-shadow: 0 0 6px rgba(242, 175, 255, 0.6); } | |
| /* Custom Scrollbar */ | |
| ::-webkit-scrollbar { width: 5px; height: 5px; } | |
| ::-webkit-scrollbar-track { background: rgba(14, 14, 18, 0.6); } | |
| ::-webkit-scrollbar-thumb { | |
| background: rgba(242, 175, 255, 0.4); | |
| border-radius: 2px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: var(--accent-secondary); | |
| } | |
| .no-scrollbar::-webkit-scrollbar { display: none; } | |
| .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; } | |
| /* ========================================================================== | |
| Cyber Badges & HUD Chips | |
| ========================================================================== */ | |
| /* ========================================================================== | |
| Cyber Badges & HUD Chips (Exact Match to Reference) | |
| ========================================================================== */ | |
| .cyber-badge { | |
| font-family: var(--font-mono); | |
| font-size: 11px; | |
| font-weight: 700; | |
| padding: 1px 7px; | |
| border-radius: 2px; | |
| background: rgba(242, 175, 255, 0.08); | |
| border: 1px solid rgba(242, 175, 255, 0.4); | |
| color: #f2afff; | |
| letter-spacing: 0.06em; | |
| display: inline-flex; | |
| align-items: center; | |
| justify-content: center; | |
| line-height: 1.4; | |
| } | |
| .cyber-badge-cyan { | |
| background: rgba(125, 244, 255, 0.08); | |
| border: 1px solid #7df4ff; | |
| color: #7df4ff; | |
| box-shadow: 0 0 6px rgba(125, 244, 255, 0.15); | |
| } | |
| .cyber-badge-magenta { | |
| background: rgba(242, 175, 255, 0.08); | |
| border: 1px solid #f2afff; | |
| color: #f2afff; | |
| box-shadow: 0 0 6px rgba(242, 175, 255, 0.15); | |
| } | |
| .cyber-badge-alert { | |
| background: rgba(255, 80, 110, 0.12); | |
| border: 1px solid #ff506e; | |
| color: #ff506e; | |
| } | |
| /* Suggestion Chips */ | |
| .suggestion-chip { | |
| background: rgba(22, 22, 30, 0.85); | |
| border: 1px solid rgba(242, 175, 255, 0.2); | |
| color: var(--text-secondary); | |
| font-family: var(--font-mono); | |
| font-size: 11.5px; | |
| padding: 6px 12px; | |
| border-radius: 2px; | |
| cursor: pointer; | |
| transition: all 0.2s ease; | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 6px; | |
| } | |
| .suggestion-chip:hover { | |
| border-color: var(--accent-primary); | |
| color: #ffffff; | |
| background: rgba(242, 175, 255, 0.14); | |
| box-shadow: 0 0 10px rgba(242, 175, 255, 0.2); | |
| transform: translateY(-1px); | |
| } | |
| /* ========================================================================== | |
| Navigation & Sidebar (Exact Match to User Reference) | |
| ========================================================================== */ | |
| #main-sidebar { | |
| background: #0d0c11; | |
| border-right: 1px solid rgba(255, 255, 255, 0.06); | |
| } | |
| .nav-menu { | |
| padding: 0; | |
| display: flex; | |
| flex-direction: column; | |
| } | |
| .nav-item { | |
| position: relative; | |
| display: flex; | |
| align-items: center; | |
| gap: 14px; | |
| padding: 13px 20px; | |
| border-radius: 0; | |
| color: #928d9c; | |
| font-family: var(--font-mono); | |
| font-size: 12.5px; | |
| font-weight: 700; | |
| letter-spacing: 0.07em; | |
| transition: all 0.15s ease; | |
| background: transparent; | |
| border-left: 4px solid transparent; | |
| cursor: pointer; | |
| width: 100%; | |
| } | |
| .nav-item .material-symbols-outlined { | |
| color: #928d9c; | |
| font-size: 20px; | |
| transition: color 0.15s ease; | |
| } | |
| .nav-item:hover { | |
| color: #d8d4e2; | |
| background: rgba(255, 255, 255, 0.03); | |
| } | |
| .nav-item:hover .material-symbols-outlined { | |
| color: #d8d4e2; | |
| } | |
| .nav-item.active { | |
| color: #f2afff ; | |
| background: #201524 ; | |
| border-left: 4px solid #f2afff ; | |
| font-weight: 700 ; | |
| } | |
| .nav-item.active .material-symbols-outlined { | |
| color: #f2afff ; | |
| } | |
| /* New Session Button */ | |
| .btn-new-session { | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| gap: 10px; | |
| width: 100%; | |
| padding: 12px 16px; | |
| background: #19121d; | |
| border: 1.5px solid #f2afff; | |
| color: #f2afff; | |
| font-family: var(--font-mono); | |
| font-size: 12.5px; | |
| font-weight: 700; | |
| letter-spacing: 0.08em; | |
| text-transform: uppercase; | |
| border-radius: 0; | |
| cursor: pointer; | |
| transition: all 0.2s ease; | |
| box-shadow: 0 0 12px rgba(242, 175, 255, 0.12); | |
| } | |
| .btn-new-session:hover { | |
| background: #f2afff; | |
| color: #0d0c11; | |
| box-shadow: 0 0 18px rgba(242, 175, 255, 0.4); | |
| } | |
| .btn-new-session .material-symbols-outlined { | |
| font-size: 18px; | |
| } | |
| /* Sidebar Footer */ | |
| .sidebar-footer { | |
| display: flex; | |
| border-top: 1px solid rgba(255, 255, 255, 0.08); | |
| background: #09080c; | |
| } | |
| .sidebar-footer-item { | |
| flex: 1; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| padding: 12px 8px; | |
| color: #837f8d; | |
| font-family: var(--font-mono); | |
| font-size: 10.5px; | |
| font-weight: 700; | |
| letter-spacing: 0.05em; | |
| text-decoration: none; | |
| transition: all 0.15s ease; | |
| } | |
| .sidebar-footer-item:first-child { | |
| border-right: 1px solid rgba(255, 255, 255, 0.08); | |
| } | |
| .sidebar-footer-item .material-symbols-outlined { | |
| font-size: 18px; | |
| margin-bottom: 3px; | |
| color: #837f8d; | |
| transition: color 0.15s ease; | |
| } | |
| .sidebar-footer-item:hover { | |
| color: #f2afff; | |
| background: rgba(242, 175, 255, 0.05); | |
| } | |
| .sidebar-footer-item:hover .material-symbols-outlined { | |
| color: #f2afff; | |
| } | |
| /* ========================================================================== | |
| Top Header Bar & Tabs | |
| ========================================================================== */ | |
| header { | |
| background: rgba(14, 14, 17, 0.9); | |
| backdrop-filter: blur(16px); | |
| -webkit-backdrop-filter: blur(16px); | |
| border-bottom: 1px solid rgba(242, 175, 255, 0.12); | |
| } | |
| .tabs-container { | |
| height: 100%; | |
| width: 100%; | |
| position: relative; | |
| } | |
| .tab-pane { | |
| display: none; | |
| height: 100%; | |
| width: 100%; | |
| } | |
| .tab-pane.active { | |
| display: block; | |
| animation: cyberFade 0.2s ease-out; | |
| } | |
| @keyframes cyberFade { | |
| from { opacity: 0; transform: translateY(4px); } | |
| to { opacity: 1; transform: translateY(0); } | |
| } | |
| /* Filter Pills */ | |
| .pill { | |
| padding: 5px 12px; | |
| border-radius: 2px; | |
| font-family: var(--font-mono); | |
| font-size: 11px; | |
| font-weight: 700; | |
| letter-spacing: 0.03em; | |
| border: 1px solid var(--border-color); | |
| background: var(--bg-secondary); | |
| color: var(--text-secondary); | |
| cursor: pointer; | |
| transition: all 0.15s ease; | |
| white-space: nowrap; | |
| } | |
| .pill:hover { | |
| border-color: var(--accent-primary); | |
| color: var(--accent-primary); | |
| } | |
| .pill.active { | |
| background: rgba(242, 175, 255, 0.15); | |
| border-color: var(--accent-primary); | |
| color: var(--accent-primary); | |
| box-shadow: 0 0 10px rgba(242, 175, 255, 0.25); | |
| } | |
| /* ========================================================================== | |
| Chat Bubbles | |
| ========================================================================== */ | |
| .user-bubble { | |
| background: rgba(125, 244, 255, 0.08); | |
| border: 1px solid rgba(125, 244, 255, 0.4); | |
| color: var(--text-primary); | |
| border-radius: 2px; | |
| padding: 12px 16px; | |
| font-size: 13.5px; | |
| line-height: 1.55; | |
| box-shadow: 0 0 12px rgba(125, 244, 255, 0.12); | |
| } | |
| .assistant-bubble { | |
| background: var(--bg-secondary); | |
| border: 1px solid rgba(242, 175, 255, 0.2); | |
| color: var(--text-primary); | |
| border-radius: 2px; | |
| padding: 14px 18px; | |
| font-size: 13.5px; | |
| line-height: 1.6; | |
| box-shadow: 0 0 15px rgba(242, 175, 255, 0.08); | |
| } | |
| .assistant-bubble pre { | |
| background: #08080b; | |
| border: 1px solid rgba(242, 175, 255, 0.2); | |
| padding: 10px 14px; | |
| margin: 10px 0; | |
| border-radius: 2px; | |
| font-family: var(--font-mono); | |
| font-size: 12px; | |
| overflow-x: auto; | |
| color: #7df4ff; | |
| } | |
| .assistant-bubble code { | |
| font-family: var(--font-mono); | |
| font-size: 12px; | |
| background: rgba(242, 175, 255, 0.12); | |
| color: #f2afff; | |
| padding: 2px 5px; | |
| border-radius: 2px; | |
| } | |
| /* ========================================================================== | |
| Memory Cards | |
| ========================================================================== */ | |
| .memories-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); | |
| gap: 16px; | |
| } | |
| .memory-card { | |
| background: var(--bg-card); | |
| border: 1px solid var(--border-color); | |
| padding: 16px; | |
| border-radius: var(--radius-sm); | |
| display: flex; | |
| flex-direction: column; | |
| gap: 10px; | |
| } | |
| .memory-card:hover { | |
| border-color: var(--accent-primary); | |
| box-shadow: 0 0 15px rgba(242, 175, 255, 0.18); | |
| transform: translateY(-1px); | |
| } | |
| .memory-card-header { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| } | |
| .memory-type-badge { | |
| font-family: var(--font-mono); | |
| font-size: 10.5px; | |
| text-transform: uppercase; | |
| font-weight: 700; | |
| padding: 2px 8px; | |
| border-radius: 2px; | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 5px; | |
| } | |
| .memory-type-semantic { | |
| background: rgba(125, 244, 255, 0.12); | |
| color: #7df4ff; | |
| border: 1px solid rgba(125, 244, 255, 0.35); | |
| } | |
| .memory-type-episodic { | |
| background: rgba(242, 175, 255, 0.12); | |
| color: #f2afff; | |
| border: 1px solid rgba(242, 175, 255, 0.35); | |
| } | |
| .memory-content { | |
| font-size: 13px; | |
| line-height: 1.5; | |
| color: var(--text-primary); | |
| } | |
| .memory-meta { | |
| display: flex; | |
| justify-content: space-between; | |
| font-family: var(--font-mono); | |
| font-size: 11px; | |
| color: var(--text-muted); | |
| border-top: 1px solid rgba(255, 255, 255, 0.05); | |
| padding-top: 8px; | |
| } | |
| .btn-card-action { | |
| background: rgba(242, 175, 255, 0.06); | |
| border: 1px solid rgba(242, 175, 255, 0.2); | |
| border-radius: 2px; | |
| padding: 3px 6px; | |
| cursor: pointer; | |
| transition: all 0.15s ease; | |
| color: var(--text-secondary); | |
| } | |
| .btn-card-action:hover { | |
| background: rgba(242, 175, 255, 0.15); | |
| border-color: var(--accent-primary); | |
| color: var(--accent-primary); | |
| } | |
| .btn-card-action.danger:hover { | |
| background: rgba(255, 80, 110, 0.15); | |
| border-color: var(--danger); | |
| color: var(--danger); | |
| } | |
| /* ========================================================================== | |
| Job Cards & Tracker | |
| ========================================================================== */ | |
| .job-card-structured { | |
| background: var(--bg-card); | |
| border: 1px solid var(--border-color); | |
| border-radius: var(--radius-sm); | |
| padding: 16px 20px; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 12px; | |
| } | |
| .job-card-structured:hover { | |
| border-color: var(--border-hover); | |
| box-shadow: 0 0 16px rgba(242, 175, 255, 0.18); | |
| transform: translateY(-1px); | |
| } | |
| .job-header-row { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: flex-start; | |
| gap: 12px; | |
| } | |
| .job-title-group { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 3px; | |
| } | |
| .job-company-badge-wrap { | |
| display: flex; | |
| align-items: center; | |
| gap: 10px; | |
| flex-wrap: wrap; | |
| } | |
| .job-entity-tag { | |
| font-family: var(--font-mono); | |
| font-size: 10px; | |
| padding: 2px 6px; | |
| border-radius: 2px; | |
| background: var(--bg-secondary); | |
| border: 1px solid rgba(125, 244, 255, 0.3); | |
| color: var(--accent-secondary); | |
| } | |
| .job-company-name { | |
| font-family: var(--font-display); | |
| font-size: 16px; | |
| font-weight: 700; | |
| color: var(--text-primary); | |
| } | |
| .job-role-text { | |
| font-size: 13.5px; | |
| color: var(--text-secondary); | |
| } | |
| .job-score-pill { | |
| font-size: 11px; | |
| font-weight: 700; | |
| font-family: var(--font-mono); | |
| padding: 2px 8px; | |
| border-radius: var(--radius-full); | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 4px; | |
| } | |
| .job-score-strong { background: rgba(125, 244, 255, 0.15); color: #7df4ff; border: 1px solid rgba(125, 244, 255, 0.4); box-shadow: 0 0 8px rgba(125, 244, 255, 0.2); } | |
| .job-score-good { background: rgba(242, 175, 255, 0.15); color: #f2afff; border: 1px solid rgba(242, 175, 255, 0.4); } | |
| .job-score-moderate { background: rgba(255, 209, 128, 0.15); color: #ffd180; border: 1px solid rgba(255, 209, 128, 0.3); } | |
| .job-score-low { background: rgba(255, 80, 110, 0.15); color: #ff506e; border: 1px solid rgba(255, 80, 110, 0.4); } | |
| /* Cyber Status Badges */ | |
| .status-pill-cyber { | |
| font-family: var(--font-mono); | |
| font-size: 10px; | |
| font-weight: 700; | |
| text-transform: uppercase; | |
| letter-spacing: 0.05em; | |
| padding: 3px 10px; | |
| border-radius: var(--radius-full); | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 6px; | |
| transition: all 0.2s ease; | |
| } | |
| .status-pill-cyber .dot { | |
| width: 6px; | |
| height: 6px; | |
| border-radius: 50%; | |
| } | |
| .status-badge-offer { | |
| background: rgba(0, 255, 157, 0.12); | |
| border: 1px solid #00ff9d; | |
| color: #00ff9d; | |
| box-shadow: 0 0 10px rgba(0, 255, 157, 0.25); | |
| } | |
| .status-badge-offer .dot { background: #00ff9d; box-shadow: 0 0 6px #00ff9d; } | |
| .status-badge-interview { | |
| background: rgba(242, 175, 255, 0.12); | |
| border: 1px solid #f2afff; | |
| color: #f2afff; | |
| box-shadow: 0 0 10px rgba(242, 175, 255, 0.25); | |
| } | |
| .status-badge-interview .dot { background: #f2afff; box-shadow: 0 0 6px #f2afff; } | |
| .status-badge-applied { | |
| border: 1px solid var(--border-color); | |
| color: #7df4ff; | |
| background: rgba(125, 244, 255, 0.08); | |
| } | |
| .status-badge-applied .dot { background: #7df4ff; box-shadow: 0 0 4px #7df4ff; } | |
| .status-badge-rejected { | |
| background: rgba(255, 80, 110, 0.12); | |
| border: 1px solid #ff506e; | |
| color: #ff506e; | |
| box-shadow: 0 0 10px rgba(255, 80, 110, 0.25); | |
| } | |
| .status-badge-rejected .dot { background: #ff506e; box-shadow: 0 0 6px #ff506e; } | |
| .job-card-offer { border-color: rgba(0, 255, 157, 0.4) ; } | |
| .job-card-interview { border-color: rgba(242, 175, 255, 0.4) ; } | |
| .job-card-rejected { border-color: rgba(255, 80, 110, 0.4) ; } | |
| .status-select { | |
| padding: 4px 10px; | |
| background: var(--bg-secondary); | |
| border: 1px solid var(--border-color); | |
| font-family: var(--font-mono); | |
| font-size: 11px; | |
| font-weight: 700; | |
| border-radius: var(--radius-sm); | |
| color: var(--text-primary); | |
| cursor: pointer; | |
| outline: none; | |
| } | |
| .job-pitch-box { | |
| background: rgba(0, 0, 0, 0.4); | |
| border-radius: var(--radius-sm); | |
| border: 1px solid var(--border-color); | |
| padding: 10px 14px; | |
| font-size: 12.5px; | |
| } | |
| .job-pitch-header { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| font-weight: 600; | |
| color: var(--text-secondary); | |
| margin-bottom: 4px; | |
| font-size: 11.5px; | |
| font-family: var(--font-mono); | |
| } | |
| .job-pitch-text { | |
| color: var(--text-primary); | |
| font-style: italic; | |
| line-height: 1.5; | |
| } | |
| .job-meta-footer { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| border-top: 1px solid rgba(242, 175, 255, 0.1); | |
| padding-top: 10px; | |
| font-size: 12px; | |
| color: var(--text-muted); | |
| flex-wrap: wrap; | |
| gap: 8px; | |
| } | |
| /* ========================================================================== | |
| Skill Tags & ATS Rows | |
| ========================================================================== */ | |
| .skill-tag { | |
| font-family: var(--font-mono); | |
| font-size: 11px; | |
| padding: 3px 8px; | |
| border-radius: 2px; | |
| display: inline-block; | |
| } | |
| .skill-tag-matched { | |
| background: rgba(125, 244, 255, 0.12); | |
| border: 1px solid rgba(125, 244, 255, 0.35); | |
| color: #7df4ff; | |
| } | |
| .skill-tag-missing { | |
| background: rgba(255, 80, 110, 0.12); | |
| border: 1px solid rgba(255, 80, 110, 0.4); | |
| color: #ff506e; | |
| } | |
| .ats-check-row, .auth-check-row { | |
| display: flex; | |
| align-items: flex-start; | |
| justify-content: space-between; | |
| gap: 12px; | |
| padding: 10px 14px; | |
| border-radius: var(--radius-sm); | |
| background: rgba(0, 0, 0, 0.3); | |
| border: 1px solid var(--border-color); | |
| transition: all 0.2s ease; | |
| } | |
| .ats-check-row:hover, .auth-check-row:hover { | |
| border-color: var(--accent-primary); | |
| } | |
| .ats-check-title, .auth-check-title { | |
| font-size: 13px; | |
| font-weight: 600; | |
| font-family: var(--font-mono); | |
| color: var(--text-primary); | |
| } | |
| .ats-check-detail, .auth-check-detail { | |
| font-size: 12px; | |
| color: var(--text-secondary); | |
| line-height: 1.45; | |
| } | |
| .ats-status-badge { | |
| font-family: var(--font-mono); | |
| font-size: 10px; | |
| font-weight: 700; | |
| padding: 2px 8px; | |
| border-radius: 2px; | |
| white-space: nowrap; | |
| } | |
| .status-pass { | |
| background: rgba(125, 244, 255, 0.15); | |
| color: #7df4ff; | |
| border: 1px solid rgba(125, 244, 255, 0.4); | |
| } | |
| .status-warn { | |
| background: rgba(255, 209, 128, 0.15); | |
| color: #ffd180; | |
| border: 1px solid rgba(255, 209, 128, 0.4); | |
| } | |
| .status-fail { | |
| background: rgba(255, 80, 110, 0.15); | |
| color: #ff506e; | |
| border: 1px solid rgba(255, 80, 110, 0.4); | |
| } | |
| /* ========================================================================== | |
| Suggested Resume Edits & Diff Cards | |
| ========================================================================== */ | |
| .edit-suggestion-card { | |
| background: var(--bg-card); | |
| border: 1px solid var(--border-color); | |
| border-radius: var(--radius-sm); | |
| padding: 14px 16px; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 10px; | |
| transition: all 0.2s ease; | |
| } | |
| .edit-suggestion-card:hover { | |
| border-color: var(--accent-secondary); | |
| box-shadow: 0 0 12px rgba(125, 244, 255, 0.15); | |
| } | |
| .edit-suggestion-card.flagged { | |
| border-color: rgba(255, 209, 128, 0.5); | |
| box-shadow: 0 0 12px rgba(255, 209, 128, 0.15); | |
| } | |
| .edit-card-header { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| gap: 8px; | |
| } | |
| .edit-type-badge { | |
| font-family: var(--font-mono); | |
| font-size: 10px; | |
| font-weight: 700; | |
| padding: 2px 7px; | |
| border-radius: 2px; | |
| text-transform: uppercase; | |
| } | |
| .edit-type-rewrite { | |
| background: rgba(242, 175, 255, 0.12); | |
| border: 1px solid #f2afff; | |
| color: #f2afff; | |
| } | |
| .edit-type-keyword { | |
| background: rgba(125, 244, 255, 0.12); | |
| border: 1px solid #7df4ff; | |
| color: #7df4ff; | |
| } | |
| .diff-box { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 6px; | |
| font-size: 12.5px; | |
| line-height: 1.5; | |
| } | |
| .diff-original { | |
| color: #8e8a9a; | |
| text-decoration: line-through; | |
| background: rgba(255, 80, 110, 0.08); | |
| border-left: 3px solid #ff506e; | |
| padding: 6px 10px; | |
| border-radius: 2px; | |
| } | |
| .diff-suggested { | |
| color: #ffffff; | |
| background: rgba(242, 175, 255, 0.08); | |
| border-left: 3px solid #f2afff; | |
| padding: 6px 10px; | |
| border-radius: 2px; | |
| font-weight: 500; | |
| } | |
| .diff-suggested.keyword-suggestion { | |
| border-left-color: #7df4ff; | |
| background: rgba(125, 244, 255, 0.08); | |
| } | |
| .diff-reason { | |
| font-family: var(--font-mono); | |
| font-size: 11px; | |
| color: var(--text-secondary); | |
| } | |
| .edit-guardrail-warning { | |
| background: rgba(255, 209, 128, 0.1); | |
| border: 1px solid #ffd180; | |
| color: #ffd180; | |
| font-family: var(--font-mono); | |
| font-size: 10.5px; | |
| padding: 6px 10px; | |
| border-radius: 2px; | |
| display: flex; | |
| align-items: center; | |
| gap: 6px; | |
| } | |
| .edit-actions-row { | |
| display: flex; | |
| justify-content: flex-end; | |
| align-items: center; | |
| gap: 8px; | |
| padding-top: 4px; | |
| } | |
| .btn-accept-edit { | |
| background: rgba(125, 244, 255, 0.12); | |
| border: 1px solid #7df4ff; | |
| color: #7df4ff; | |
| font-family: var(--font-mono); | |
| font-size: 11px; | |
| font-weight: 700; | |
| padding: 4px 12px; | |
| border-radius: 2px; | |
| cursor: pointer; | |
| transition: all 0.15s ease; | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 4px; | |
| } | |
| .btn-accept-edit:hover { | |
| background: #7df4ff; | |
| color: #0d0c11; | |
| box-shadow: 0 0 10px rgba(125, 244, 255, 0.4); | |
| } | |
| .btn-dismiss-edit { | |
| background: transparent; | |
| border: 1px solid var(--border-color); | |
| color: var(--text-muted); | |
| font-family: var(--font-mono); | |
| font-size: 11px; | |
| padding: 4px 10px; | |
| border-radius: 2px; | |
| cursor: pointer; | |
| transition: all 0.15s ease; | |
| } | |
| .btn-dismiss-edit:hover { | |
| color: #ff506e; | |
| border-color: #ff506e; | |
| } | |
| /* Company Insights & Presets */ | |
| .preset-btn { | |
| background: rgba(125, 244, 255, 0.08); | |
| border: 1px solid rgba(125, 244, 255, 0.4); | |
| color: var(--accent-secondary); | |
| font-family: var(--font-mono); | |
| font-size: 10.5px; | |
| font-weight: 700; | |
| padding: 3px 8px; | |
| border-radius: 2px; | |
| cursor: pointer; | |
| transition: all 0.15s ease; | |
| } | |
| .preset-btn:hover { | |
| background: var(--accent-secondary); | |
| color: #0d0c11; | |
| box-shadow: 0 0 10px rgba(125, 244, 255, 0.35); | |
| } | |
| /* Modals & Toasts */ | |
| .modal-overlay { | |
| background: rgba(0, 0, 0, 0.75); | |
| backdrop-filter: blur(8px); | |
| -webkit-backdrop-filter: blur(8px); | |
| } | |
| .toast { | |
| background: #19181f; | |
| border: 1px solid var(--accent-primary); | |
| color: var(--text-primary); | |
| padding: 12px 18px; | |
| border-radius: 2px; | |
| font-family: var(--font-mono); | |
| font-size: 12px; | |
| box-shadow: 0 0 15px rgba(242, 175, 255, 0.25); | |
| display: flex; | |
| align-items: center; | |
| gap: 10px; | |
| transition: opacity 0.3s ease; | |
| pointer-events: auto; | |
| } | |
| .toast-success { border-color: #7df4ff; box-shadow: 0 0 15px rgba(125, 244, 255, 0.3); } | |
| .toast-error { border-color: #ff506e; box-shadow: 0 0 15px rgba(255, 80, 110, 0.3); } | |
| .toast-warning { border-color: #ffd180; } | |
| .spinner { | |
| width: 32px; | |
| height: 32px; | |
| border: 2px solid rgba(242, 175, 255, 0.2); | |
| border-top-color: var(--accent-primary); | |
| border-radius: 50%; | |
| animation: spin 0.8s linear infinite; | |
| margin: 0 auto; | |
| } | |
| @keyframes spin { to { transform: rotate(360deg); } } | |
| /* Outreach & Apply via Email Styles */ | |
| .role-option-card { | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-between; | |
| padding: 10px 14px; | |
| background: var(--bg-primary); | |
| border: 1px solid var(--border-color); | |
| border-radius: var(--radius-xs); | |
| cursor: pointer; | |
| transition: all 0.2s ease; | |
| } | |
| .role-option-card:hover { | |
| border-color: var(--accent-secondary); | |
| background: rgba(125, 244, 255, 0.05); | |
| } | |
| .role-option-card.selected { | |
| border-color: var(--accent-secondary); | |
| background: rgba(125, 244, 255, 0.12); | |
| box-shadow: 0 0 10px rgba(125, 244, 255, 0.2); | |
| } | |
| .role-option-card input[type="radio"] { | |
| accent-color: var(--accent-secondary); | |
| } | |
| .fabrication-flag-item { | |
| padding: 8px 12px; | |
| background: rgba(255, 80, 110, 0.08); | |
| border-left: 3px solid var(--danger); | |
| font-family: var(--font-mono); | |
| font-size: 11px; | |
| color: var(--text-primary); | |
| } | |
| .step-indicator-active { | |
| border-color: var(--accent-primary) ; | |
| color: var(--accent-primary) ; | |
| box-shadow: 0 0 10px rgba(242, 175, 255, 0.2); | |
| } | |
| .step-indicator-active span:first-child { | |
| background: var(--accent-primary) ; | |
| color: #0e0e11 ; | |
| } | |
| .step-indicator-done { | |
| border-color: var(--accent-secondary) ; | |
| color: var(--accent-secondary) ; | |
| } | |
| .step-indicator-done span:first-child { | |
| background: var(--accent-secondary) ; | |
| color: #0e0e11 ; | |
| } | |
| .hidden { display: none ; } | |
| /* ========================================================================== | |
| CYBERPUNK TERMINAL ANIMATION PASS (malloc() CORE MOTION SYSTEM) | |
| ========================================================================== */ | |
| /* -------------------------------------------------------------------------- | |
| 1. Animated Progress Bars & Stat Shimmers (Sweep) | |
| -------------------------------------------------------------------------- */ | |
| @keyframes shimmer-sweep { | |
| 0% { | |
| background-position: 200% 0; | |
| } | |
| 100% { | |
| background-position: -200% 0; | |
| } | |
| } | |
| .stat-bar-fill, | |
| .shimmer-sweep, | |
| .tech-card .w-full.h-1 > div, | |
| .tech-card .overflow-hidden > div.h-full, | |
| .job-stat-bar > div, | |
| #ats-score-bar, | |
| #matcher-score-fill, | |
| #insight-sentiment-pos-bar, | |
| #insight-sentiment-neg-bar { | |
| position: relative; | |
| background-size: 200% 100% ; | |
| animation: shimmer-sweep 3.5s linear infinite; | |
| } | |
| .bg-primary.stat-bar-fill, | |
| .tech-card .overflow-hidden > div.h-full.bg-primary, | |
| div.h-full.bg-primary { | |
| background: linear-gradient(90deg, #f2afff 0%, #ffffff 40%, #f2afff 80%) ; | |
| background-size: 200% 100% ; | |
| animation: shimmer-sweep 3.5s linear infinite; | |
| } | |
| .bg-secondary.stat-bar-fill, | |
| .tech-card .overflow-hidden > div.h-full.bg-secondary, | |
| div.h-full.bg-secondary { | |
| background: linear-gradient(90deg, #7df4ff 0%, #ffffff 40%, #7df4ff 80%) ; | |
| background-size: 200% 100% ; | |
| animation: shimmer-sweep 3.5s linear infinite; | |
| } | |
| .bg-error.stat-bar-fill, | |
| .tech-card .overflow-hidden > div.h-full.bg-error, | |
| div.h-full.bg-error { | |
| background: linear-gradient(90deg, #ff506e 0%, #ffa4b2 40%, #ff506e 80%) ; | |
| background-size: 200% 100% ; | |
| animation: shimmer-sweep 3.5s linear infinite; | |
| } | |
| /* -------------------------------------------------------------------------- | |
| 2. Blinking Terminal Cursor (Breadcrumb & Terminal Session Prompts) | |
| -------------------------------------------------------------------------- */ | |
| @keyframes cursor-blink { | |
| 0%, 49% { | |
| opacity: 1; | |
| } | |
| 50%, 100% { | |
| opacity: 0; | |
| } | |
| } | |
| .terminal-cursor { | |
| display: inline-block; | |
| width: 7px; | |
| height: 1.05em; | |
| background: var(--accent-primary); | |
| vertical-align: -1px; | |
| margin-left: 4px; | |
| animation: cursor-blink 1s step-end infinite; | |
| box-shadow: 0 0 8px var(--accent-primary); | |
| } | |
| .terminal-cursor-cyan { | |
| background: var(--accent-secondary) ; | |
| box-shadow: 0 0 8px var(--accent-secondary) ; | |
| } | |
| #current-tab-title::after { | |
| content: ''; | |
| display: inline-block; | |
| width: 7px; | |
| height: 0.85em; | |
| background: var(--accent-primary); | |
| margin-left: 6px; | |
| vertical-align: -1px; | |
| animation: cursor-blink 1s step-end infinite; | |
| box-shadow: 0 0 8px rgba(242, 175, 255, 0.7); | |
| } | |
| .crumb-prompt::after { | |
| content: ''; | |
| display: inline-block; | |
| width: 6px; | |
| height: 0.8em; | |
| background: var(--accent-secondary); | |
| margin-left: 5px; | |
| vertical-align: -1px; | |
| animation: cursor-blink 1.1s step-end infinite; | |
| box-shadow: 0 0 6px var(--accent-secondary); | |
| } | |
| /* -------------------------------------------------------------------------- | |
| 3. Ambient Background Grid & Scanline Drift (Subtle, < 3% Opacity) | |
| -------------------------------------------------------------------------- */ | |
| @keyframes scanline-drift { | |
| from { | |
| background-position: 0 0, 0 0; | |
| } | |
| to { | |
| background-position: 0 56px, 56px 0; | |
| } | |
| } | |
| .scanline-overlay, | |
| .bg-scanlines-animated { | |
| position: fixed; | |
| inset: 0; | |
| pointer-events: none; | |
| z-index: 0; | |
| background-image: | |
| repeating-linear-gradient( | |
| to bottom, | |
| transparent 0px, | |
| transparent 3px, | |
| rgba(242, 175, 255, 0.015) 3px, | |
| rgba(242, 175, 255, 0.015) 4px | |
| ), | |
| linear-gradient(rgba(242, 175, 255, 0.02) 1px, transparent 1px), | |
| linear-gradient(90deg, rgba(125, 244, 255, 0.015) 1px, transparent 1px); | |
| background-size: 100% 4px, 28px 28px, 28px 28px; | |
| animation: scanline-drift 12s linear infinite; | |
| opacity: 0.55; | |
| } | |
| /* -------------------------------------------------------------------------- | |
| 4. Glow-Pulse on Active / Live Status Indicators | |
| -------------------------------------------------------------------------- */ | |
| @keyframes glow-pulse-magenta { | |
| 0%, 100% { | |
| box-shadow: 0 0 4px rgba(242, 175, 255, 0.4); | |
| opacity: 0.85; | |
| } | |
| 50% { | |
| box-shadow: 0 0 14px rgba(242, 175, 255, 0.9), 0 0 22px rgba(217, 83, 255, 0.5); | |
| opacity: 1; | |
| } | |
| } | |
| @keyframes glow-pulse-cyan { | |
| 0%, 100% { | |
| box-shadow: 0 0 4px rgba(125, 244, 255, 0.4); | |
| opacity: 0.85; | |
| } | |
| 50% { | |
| box-shadow: 0 0 14px rgba(125, 244, 255, 0.9), 0 0 22px rgba(0, 238, 252, 0.5); | |
| opacity: 1; | |
| } | |
| } | |
| @keyframes glow-pulse-green { | |
| 0%, 100% { | |
| box-shadow: 0 0 4px rgba(0, 255, 157, 0.4); | |
| opacity: 0.85; | |
| } | |
| 50% { | |
| box-shadow: 0 0 14px rgba(0, 255, 157, 0.9), 0 0 20px rgba(0, 255, 157, 0.5); | |
| opacity: 1; | |
| } | |
| } | |
| #server-status, | |
| .status-live { | |
| animation: glow-pulse-cyan 2.5s ease-in-out infinite ; | |
| } | |
| .status-badge-offer .dot { | |
| animation: glow-pulse-green 2s ease-in-out infinite; | |
| } | |
| .status-badge-interview .dot { | |
| animation: glow-pulse-magenta 2s ease-in-out infinite; | |
| } | |
| .status-badge-applied .dot { | |
| animation: glow-pulse-cyan 2.5s ease-in-out infinite; | |
| } | |
| @keyframes step-active-glow { | |
| 0%, 100% { | |
| box-shadow: 0 0 6px rgba(242, 175, 255, 0.2); | |
| border-color: rgba(242, 175, 255, 0.6) ; | |
| } | |
| 50% { | |
| box-shadow: 0 0 16px rgba(242, 175, 255, 0.55), 0 0 24px rgba(217, 83, 255, 0.3); | |
| border-color: #f2afff ; | |
| } | |
| } | |
| .step-indicator-active { | |
| animation: step-active-glow 2.5s ease-in-out infinite; | |
| } | |
| /* -------------------------------------------------------------------------- | |
| 5. Border-Glow Sweep on Actively Processing Panels | |
| -------------------------------------------------------------------------- */ | |
| @keyframes border-glow-sweep { | |
| 0%, 100% { | |
| border-color: rgba(242, 175, 255, 0.3); | |
| box-shadow: 0 0 10px rgba(242, 175, 255, 0.15); | |
| } | |
| 50% { | |
| border-color: #7df4ff; | |
| box-shadow: 0 0 20px rgba(125, 244, 255, 0.4), inset 0 0 14px rgba(125, 244, 255, 0.08); | |
| } | |
| } | |
| .panel-processing, | |
| .is-processing, | |
| .tech-card:has(.spinner) { | |
| animation: border-glow-sweep 2.5s ease-in-out infinite ; | |
| } | |
| /* -------------------------------------------------------------------------- | |
| 6. Micro-Interactions (Badges, Buttons, Chips) | |
| -------------------------------------------------------------------------- */ | |
| .cyber-badge { | |
| transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.18s ease, border-color 0.18s ease; | |
| } | |
| .cyber-badge:hover { | |
| transform: translateY(-1px) scale(1.04); | |
| box-shadow: 0 0 10px rgba(242, 175, 255, 0.35); | |
| border-color: var(--accent-primary); | |
| } | |
| .cyber-badge-cyan:hover { | |
| box-shadow: 0 0 10px rgba(125, 244, 255, 0.45); | |
| border-color: var(--accent-secondary); | |
| } | |
| .btn-card-action, | |
| .preset-btn, | |
| .pill, | |
| .suggestion-chip { | |
| transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease; | |
| } | |
| /* -------------------------------------------------------------------------- | |
| 7. Accessibility: prefers-reduced-motion | |
| -------------------------------------------------------------------------- */ | |
| @media (prefers-reduced-motion: reduce) { | |
| *, *::before, *::after { | |
| animation-duration: 0.01ms ; | |
| animation-iteration-count: 1 ; | |
| transition-duration: 0.01ms ; | |
| scroll-behavior: auto ; | |
| } | |
| /* Static cursor remain visible without blinking */ | |
| .terminal-cursor, | |
| #current-tab-title::after, | |
| .crumb-prompt::after { | |
| animation: none ; | |
| opacity: 1 ; | |
| } | |
| .scanline-overlay, | |
| .bg-scanlines-animated { | |
| animation: none ; | |
| } | |
| .stat-bar-fill, | |
| .shimmer-sweep, | |
| div.h-full.bg-primary, | |
| div.h-full.bg-secondary, | |
| div.h-full.bg-error { | |
| animation: none ; | |
| } | |
| .step-indicator-active, | |
| #server-status, | |
| .status-live, | |
| .status-badge-offer .dot, | |
| .status-badge-interview .dot, | |
| .status-badge-applied .dot, | |
| .panel-processing, | |
| .is-processing, | |
| .tech-card:has(.spinner) { | |
| animation: none ; | |
| } | |
| } | |