@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap'); :root { --bg-primary: #080a10; --bg-secondary: #0f131f; --bg-card: rgba(20, 26, 43, 0.6); --border-color: rgba(255, 255, 255, 0.08); --text-primary: #f1f5f9; --text-secondary: #94a3b8; --text-muted: #64748b; --accent-violet: #8b5cf6; --accent-violet-glow: rgba(139, 92, 246, 0.25); --accent-cyan: #06b6d4; --accent-cyan-glow: rgba(6, 182, 212, 0.25); --accent-emerald: #10b981; --accent-emerald-glow: rgba(16, 185, 129, 0.2); --accent-rose: #f43f5e; --accent-rose-glow: rgba(244, 63, 94, 0.2); --accent-amber: #f59e0b; --accent-amber-glow: rgba(245, 158, 11, 0.2); --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; --font-mono: 'JetBrains Mono', monospace; } * { box-sizing: border-box; margin: 0; padding: 0; scrollbar-width: thin; scrollbar-color: var(--border-color) transparent; } *::-webkit-scrollbar { width: 6px; height: 6px; } *::-webkit-scrollbar-track { background: transparent; } *::-webkit-scrollbar-thumb { background-color: var(--border-color); border-radius: 3px; } body { background-color: var(--bg-primary); color: var(--text-primary); font-family: var(--font-sans); overflow-x: hidden; height: 100vh; } /* Glassmorphism utility */ .glass { background: var(--bg-card); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--border-color); border-radius: 12px; } .glass-interactive { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .glass-interactive:hover { border-color: rgba(139, 92, 246, 0.3); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(139, 92, 246, 0.05); transform: translateY(-2px); } /* Accent Glows */ .glow-violet { box-shadow: 0 0 20px var(--accent-violet-glow); } .glow-cyan { box-shadow: 0 0 20px var(--accent-cyan-glow); } /* Status Indicator pulsing */ @keyframes pulse-emerald { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } } .pulse-emerald { animation: pulse-emerald 2s infinite; background-color: var(--accent-emerald); } @keyframes pulse-amber { 0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); } 70% { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); } 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); } } .pulse-amber { animation: pulse-amber 2s infinite; background-color: var(--accent-amber); } /* Layout Utilities */ .app-container { display: grid; grid-template-columns: 260px 1fr; height: 100vh; width: 100vw; overflow: hidden; } .sidebar { background-color: var(--bg-secondary); border-right: 1px solid var(--border-color); display: flex; flex-direction: column; padding: 24px 16px; justify-content: space-between; } .main-content { display: flex; flex-direction: column; height: 100vh; overflow-y: auto; position: relative; background-image: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05), transparent 40%), radial-gradient(circle at 10% 80%, rgba(6, 182, 212, 0.05), transparent 40%); } .header { height: 70px; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; justify-content: space-between; padding: 0 32px; background: rgba(8, 10, 16, 0.5); backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 10; } .content-body { padding: 32px; flex: 1; display: flex; flex-direction: column; } /* Typography and utilities */ h1, h2, h3, h4, h5 { font-weight: 600; letter-spacing: -0.02em; } .mono { font-family: var(--font-mono); } /* Animations */ .fade-in { animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; } @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }