@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700&display=swap'); @tailwind base; @tailwind components; @tailwind utilities; :root { --bg-primary: #020617; --bg-secondary: #0f172a; --bg-tertiary: #1e293b; --bg-card: #0f172a; --bg-elevated: #1e293b; --bg-hover: #334155; --text-primary: #f8fafc; --text-secondary: #94a3b8; --text-tertiary: #64748b; --border: rgba(148, 163, 184, 0.12); --border-strong: rgba(148, 163, 184, 0.2); --accent: #8b5cf6; --accent-hover: #a78bfa; --accent-subtle: rgba(139, 92, 246, 0.15); --success: #34d399; --warning: #fbbf24; } .light { --bg-primary: #f8fafc; --bg-secondary: #ffffff; --bg-tertiary: #f1f5f9; --bg-card: #ffffff; --bg-elevated: #ffffff; --bg-hover: #e2e8f0; --text-primary: #0f172a; --text-secondary: #64748b; --text-tertiary: #94a3b8; --border: rgba(100, 116, 139, 0.15); --border-strong: rgba(100, 116, 139, 0.25); --accent: #7c3aed; --accent-hover: #6d28d9; --accent-subtle: rgba(124, 58, 237, 0.12); } body { background: var(--bg-primary); color: var(--text-primary); font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif; margin: 0; padding: 0; max-width: 100%; min-height: 100vh; overflow: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } html.popup body { width: 380px; height: 520px; min-height: 520px; } * { box-sizing: border-box; } ::-webkit-scrollbar { width: 6px; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-thumb { background: var(--bg-tertiary); border-radius: 3px; } ::-webkit-scrollbar-thumb:hover { background: var(--text-tertiary); } button, a, input, textarea { transition: all 0.15s ease; } input:focus, textarea:focus, button:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--accent-subtle), 0 0 0 4px var(--accent); } @keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } } @keyframes slideUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } } @keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } } @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } } .animate-fadeIn { animation: fadeIn 0.2s ease forwards; } .animate-slideUp { animation: slideUp 0.25s ease forwards; } .animate-slideDown { animation: slideDown 0.2s ease forwards; } .animate-pulse { animation: pulse 1.5s ease-in-out infinite; }