| @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap'); |
|
|
| :root { |
| |
| --bg-gradient: radial-gradient(circle at top, #0a0e1a, #05060a 70%); |
| |
| |
| --primary: #818CF8; |
| --primary-strong: #6366F1; |
| --primary-light: #A5B4FC; |
| --primary-dark: #4F46E5; |
| --primary-glow: rgba(129, 140, 248, 0.4); |
| |
| |
| --secondary: #22D3EE; |
| --secondary-light: #67E8F9; |
| --secondary-dark: #06B6D4; |
| --secondary-glow: rgba(34, 211, 238, 0.4); |
| |
| |
| --accent: #F472B6; |
| --accent-light: #F9A8D4; |
| --accent-dark: #EC4899; |
| |
| |
| --success: #34D399; |
| --success-light: #6EE7B7; |
| --success-dark: #10B981; |
| --success-glow: rgba(52, 211, 153, 0.5); |
| |
| --warning: #FBBF24; |
| --warning-light: #FCD34D; |
| --warning-dark: #F59E0B; |
| |
| --danger: #F87171; |
| --danger-light: #FCA5A5; |
| --danger-dark: #EF4444; |
| |
| --info: #60A5FA; |
| --info-light: #93C5FD; |
| --info-dark: #3B82F6; |
| |
| |
| --glass-bg: rgba(30, 41, 59, 0.85); |
| --glass-bg-light: rgba(30, 41, 59, 0.6); |
| --glass-bg-strong: rgba(30, 41, 59, 0.95); |
| --glass-border: rgba(255, 255, 255, 0.15); |
| --glass-border-light: rgba(255, 255, 255, 0.1); |
| --glass-border-strong: rgba(255, 255, 255, 0.25); |
| --glass-highlight: rgba(255, 255, 255, 0.2); |
| |
| |
| --text-primary: #F8FAFC; |
| --text-secondary: #E2E8F0; |
| --text-soft: #CBD5E1; |
| --text-muted: rgba(226, 232, 240, 0.75); |
| --text-faint: rgba(226, 232, 240, 0.5); |
| |
| |
| --shadow-strong: 0 25px 60px rgba(0, 0, 0, 0.7); |
| --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.6); |
| --shadow-glow-primary: 0 0 40px rgba(129, 140, 248, 0.2); |
| --shadow-glow-secondary: 0 0 40px rgba(34, 211, 238, 0.2); |
| |
| |
| --sidebar-width: 260px; |
| } |
|
|
| * { |
| box-sizing: border-box; |
| } |
|
|
| html, body { |
| margin: 0; |
| padding: 0; |
| min-height: 100vh; |
| font-family: 'Manrope', 'DM Sans', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; |
| font-weight: 500; |
| font-size: 15px; |
| line-height: 1.65; |
| letter-spacing: -0.015em; |
| background: var(--bg-gradient); |
| color: var(--text-primary); |
| -webkit-font-smoothing: antialiased; |
| -moz-osx-font-smoothing: grayscale; |
| text-rendering: optimizeLegibility; |
| } |
|
|
| body[data-theme='light'] { |
| --bg-gradient: radial-gradient(circle at top, #f3f6ff, #dfe5ff); |
| |
| |
| --glass-bg: rgba(255, 255, 255, 0.85); |
| --glass-bg-light: rgba(255, 255, 255, 0.7); |
| --glass-bg-strong: rgba(255, 255, 255, 0.95); |
| --glass-border: rgba(15, 23, 42, 0.15); |
| --glass-border-light: rgba(15, 23, 42, 0.1); |
| --glass-border-strong: rgba(15, 23, 42, 0.25); |
| --glass-highlight: rgba(15, 23, 42, 0.08); |
| |
| |
| --text-primary: #0f172a; |
| --text-secondary: #1e293b; |
| --text-soft: #334155; |
| --text-muted: rgba(15, 23, 42, 0.7); |
| --text-faint: rgba(15, 23, 42, 0.5); |
| |
| |
| --shadow-strong: 0 25px 60px rgba(0, 0, 0, 0.15); |
| --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.1); |
| --shadow-glow-primary: 0 0 40px rgba(96, 165, 250, 0.3); |
| --shadow-glow-secondary: 0 0 40px rgba(34, 211, 238, 0.3); |
| } |
|
|
| |
| body[data-theme='light'] .sidebar { |
| background: linear-gradient(180deg, |
| rgba(255, 255, 255, 0.95) 0%, |
| rgba(248, 250, 252, 0.98) 50%, |
| rgba(255, 255, 255, 0.95) 100%); |
| border-right: 2px solid rgba(96, 165, 250, 0.2); |
| box-shadow: |
| 8px 0 32px rgba(0, 0, 0, 0.08), |
| inset -2px 0 0 rgba(96, 165, 250, 0.15), |
| 0 0 60px rgba(96, 165, 250, 0.05); |
| } |
|
|
| body[data-theme='light'] .sidebar::before { |
| background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), rgba(34, 211, 238, 0.25), transparent); |
| opacity: 0.5; |
| } |
|
|
| body[data-theme='light'] .sidebar::after { |
| background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.15), transparent); |
| opacity: 0.3; |
| } |
|
|
| body[data-theme='light'] .nav-button { |
| color: rgba(15, 23, 42, 0.8); |
| } |
|
|
| body[data-theme='light'] .nav-button:hover { |
| background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(34, 211, 238, 0.12)); |
| color: #0f172a; |
| } |
|
|
| body[data-theme='light'] .nav-button.active { |
| background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(34, 211, 238, 0.18)); |
| color: #0f172a; |
| border: 1px solid rgba(96, 165, 250, 0.3); |
| } |
|
|
| body[data-theme='light'] .nav-button::before { |
| background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(34, 211, 238, 0.18)); |
| border: 2.5px solid rgba(96, 165, 250, 0.4); |
| } |
|
|
| body[data-theme='light'] .nav-button.active::before { |
| background: linear-gradient(135deg, rgba(96, 165, 250, 0.3), rgba(34, 211, 238, 0.25)); |
| border-color: rgba(96, 165, 250, 0.6); |
| } |
|
|
| body[data-theme='light'] .brand { |
| background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(34, 211, 238, 0.08)); |
| border: 2px solid rgba(96, 165, 250, 0.2); |
| } |
|
|
| body[data-theme='light'] .brand:hover { |
| background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(34, 211, 238, 0.12)); |
| border-color: rgba(96, 165, 250, 0.3); |
| } |
|
|
| body[data-theme='light'] .brand-icon { |
| background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(34, 211, 238, 0.12)); |
| border: 2px solid rgba(96, 165, 250, 0.3); |
| } |
|
|
| body[data-theme='light'] .sidebar-footer { |
| border-top: 1px solid rgba(96, 165, 250, 0.15); |
| } |
|
|
| body[data-theme='light'] .footer-badge { |
| background: rgba(96, 165, 250, 0.1); |
| border: 1px solid rgba(96, 165, 250, 0.2); |
| color: rgba(15, 23, 42, 0.8); |
| } |
|
|
| .app-shell { |
| display: flex; |
| min-height: 100vh; |
| } |
|
|
| .sidebar { |
| width: var(--sidebar-width); |
| padding: 24px 16px; |
| background: linear-gradient(180deg, |
| rgba(10, 15, 30, 0.98) 0%, |
| rgba(15, 23, 42, 0.96) 50%, |
| rgba(10, 15, 30, 0.98) 100%); |
| backdrop-filter: blur(40px) saturate(200%); |
| border-right: 2px solid rgba(129, 140, 248, 0.3); |
| display: flex; |
| flex-direction: column; |
| gap: 24px; |
| position: sticky; |
| top: 0; |
| height: 100vh; |
| box-shadow: |
| 8px 0 32px rgba(0, 0, 0, 0.6), |
| inset -2px 0 0 rgba(129, 140, 248, 0.2), |
| 0 0 60px rgba(129, 140, 248, 0.1); |
| z-index: 100; |
| transition: border-color 0.3s ease, box-shadow 0.3s ease; |
| position: relative; |
| } |
|
|
| .sidebar::before { |
| content: ''; |
| position: absolute; |
| top: 0; |
| left: 0; |
| right: 0; |
| height: 2px; |
| background: linear-gradient(90deg, transparent, rgba(129, 140, 248, 0.4), rgba(34, 211, 238, 0.3), transparent); |
| opacity: 0.6; |
| } |
|
|
| .sidebar::after { |
| content: ''; |
| position: absolute; |
| bottom: 0; |
| left: 0; |
| right: 0; |
| height: 1px; |
| background: linear-gradient(90deg, transparent, rgba(129, 140, 248, 0.2), transparent); |
| opacity: 0.4; |
| } |
|
|
| .brand { |
| display: flex; |
| align-items: center; |
| gap: 14px; |
| padding: 18px 16px; |
| background: linear-gradient(135deg, rgba(129, 140, 248, 0.15), rgba(34, 211, 238, 0.1)); |
| border-radius: 18px; |
| border: 2px solid rgba(129, 140, 248, 0.3); |
| box-shadow: |
| inset 0 2px 4px rgba(255, 255, 255, 0.15), |
| inset 0 -2px 4px rgba(0, 0, 0, 0.2), |
| 0 4px 16px rgba(0, 0, 0, 0.4), |
| 0 0 30px rgba(129, 140, 248, 0.2); |
| position: relative; |
| overflow: hidden; |
| transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); |
| backdrop-filter: blur(20px) saturate(180%); |
| } |
|
|
| .brand::before { |
| content: ''; |
| position: absolute; |
| inset: 0; |
| background: linear-gradient(135deg, rgba(129, 140, 248, 0.2), rgba(34, 211, 238, 0.15)); |
| opacity: 0; |
| transition: opacity 0.4s ease; |
| } |
|
|
| .brand::after { |
| content: ''; |
| position: absolute; |
| top: -50%; |
| left: -50%; |
| width: 200%; |
| height: 200%; |
| background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent); |
| transform: rotate(45deg); |
| transition: transform 0.6s ease; |
| opacity: 0; |
| } |
|
|
| .brand:hover { |
| background: linear-gradient(135deg, rgba(129, 140, 248, 0.25), rgba(34, 211, 238, 0.2)); |
| border-color: rgba(129, 140, 248, 0.5); |
| box-shadow: |
| inset 0 2px 6px rgba(255, 255, 255, 0.2), |
| inset 0 -2px 6px rgba(0, 0, 0, 0.3), |
| 0 6px 24px rgba(129, 140, 248, 0.4), |
| 0 0 40px rgba(129, 140, 248, 0.3); |
| } |
|
|
| .brand:hover::before { |
| opacity: 1; |
| } |
|
|
| .brand:hover::after { |
| opacity: 1; |
| transform: rotate(45deg) translate(100%, 100%); |
| transition: transform 0.8s ease; |
| } |
|
|
| .brand-icon { |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| width: 52px; |
| height: 52px; |
| border-radius: 50%; |
| background: linear-gradient(135deg, rgba(129, 140, 248, 0.25), rgba(34, 211, 238, 0.2)); |
| border: 2px solid rgba(129, 140, 248, 0.4); |
| color: var(--primary-light); |
| flex-shrink: 0; |
| box-shadow: |
| inset 0 2px 4px rgba(255, 255, 255, 0.2), |
| inset 0 -2px 4px rgba(0, 0, 0, 0.3), |
| 0 4px 12px rgba(129, 140, 248, 0.3), |
| 0 0 20px rgba(129, 140, 248, 0.2); |
| position: relative; |
| transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); |
| backdrop-filter: blur(15px) saturate(180%); |
| animation: brandIconPulse 3s ease-in-out infinite; |
| } |
|
|
| .brand-icon::before { |
| content: ''; |
| position: absolute; |
| inset: -2px; |
| border-radius: 50%; |
| background: linear-gradient(135deg, rgba(129, 140, 248, 0.4), rgba(34, 211, 238, 0.3)); |
| opacity: 0; |
| transition: opacity 0.4s ease; |
| z-index: -1; |
| filter: blur(8px); |
| } |
|
|
| .brand-icon::after { |
| content: ''; |
| position: absolute; |
| top: 50%; |
| left: 50%; |
| width: 0; |
| height: 0; |
| border-radius: 50%; |
| background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent); |
| transform: translate(-50%, -50%); |
| transition: width 0.4s ease, height 0.4s ease; |
| opacity: 0; |
| } |
|
|
| .brand:hover .brand-icon { |
| box-shadow: |
| inset 0 2px 6px rgba(255, 255, 255, 0.25), |
| inset 0 -2px 6px rgba(0, 0, 0, 0.3), |
| 0 6px 20px rgba(129, 140, 248, 0.5), |
| 0 0 30px rgba(129, 140, 248, 0.4); |
| border-color: rgba(129, 140, 248, 0.6); |
| } |
|
|
| .brand:hover .brand-icon::before { |
| opacity: 1; |
| } |
|
|
| .brand:hover .brand-icon::after { |
| width: 100%; |
| height: 100%; |
| opacity: 1; |
| } |
|
|
| .brand-icon svg { |
| position: relative; |
| z-index: 1; |
| filter: drop-shadow(0 2px 6px rgba(129, 140, 248, 0.6)); |
| transition: filter 0.4s ease; |
| } |
|
|
| .brand:hover .brand-icon svg { |
| filter: drop-shadow(0 3px 10px rgba(129, 140, 248, 0.8)); |
| } |
|
|
| @keyframes brandIconPulse { |
| 0%, 100% { |
| box-shadow: |
| inset 0 2px 4px rgba(255, 255, 255, 0.2), |
| inset 0 -2px 4px rgba(0, 0, 0, 0.3), |
| 0 4px 12px rgba(129, 140, 248, 0.3), |
| 0 0 20px rgba(129, 140, 248, 0.2); |
| } |
| 50% { |
| box-shadow: |
| inset 0 2px 4px rgba(255, 255, 255, 0.2), |
| inset 0 -2px 4px rgba(0, 0, 0, 0.3), |
| 0 4px 12px rgba(129, 140, 248, 0.4), |
| 0 0 30px rgba(129, 140, 248, 0.3); |
| } |
| } |
|
|
| .brand-text { |
| display: flex; |
| flex-direction: column; |
| gap: 6px; |
| flex: 1; |
| min-width: 0; |
| } |
|
|
| .brand strong { |
| font-size: 1.0625rem; |
| font-weight: 800; |
| letter-spacing: -0.02em; |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| color: var(--text-primary); |
| line-height: 1.3; |
| white-space: nowrap; |
| overflow: hidden; |
| text-overflow: ellipsis; |
| background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| background-clip: text; |
| filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2)); |
| transition: all 0.3s ease; |
| } |
|
|
| .brand:hover strong { |
| background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| background-clip: text; |
| } |
|
|
| .env-pill { |
| display: inline-flex; |
| align-items: center; |
| gap: 5px; |
| background: rgba(143, 136, 255, 0.1); |
| border: 1px solid rgba(143, 136, 255, 0.2); |
| padding: 3px 8px; |
| border-radius: 6px; |
| font-size: 0.65rem; |
| font-weight: 600; |
| text-transform: uppercase; |
| letter-spacing: 0.06em; |
| color: rgba(143, 136, 255, 0.9); |
| font-family: 'Manrope', sans-serif; |
| white-space: nowrap; |
| overflow: hidden; |
| text-overflow: ellipsis; |
| max-width: 100%; |
| } |
|
|
| .nav { |
| display: flex; |
| flex-direction: column; |
| gap: 10px; |
| } |
|
|
| .nav-button { |
| border: none; |
| border-radius: 14px; |
| padding: 14px 18px; |
| display: flex; |
| align-items: center; |
| gap: 14px; |
| background: transparent; |
| color: rgba(226, 232, 240, 0.8); |
| font-weight: 600; |
| font-family: 'Manrope', sans-serif; |
| font-size: 0.9375rem; |
| cursor: pointer; |
| transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); |
| position: relative; |
| overflow: visible; |
| } |
|
|
| .nav-button { |
| position: relative; |
| } |
|
|
| .nav-button svg { |
| width: 26px; |
| height: 26px; |
| flex-shrink: 0; |
| filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6)); |
| transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); |
| z-index: 2; |
| position: relative; |
| opacity: 0.9; |
| stroke-width: 2.5; |
| } |
|
|
| .nav-button::before { |
| content: ''; |
| position: absolute; |
| left: 0; |
| width: 56px; |
| height: 56px; |
| border-radius: 50%; |
| background: linear-gradient(135deg, rgba(129, 140, 248, 0.3), rgba(34, 211, 238, 0.25)); |
| border: 2.5px solid rgba(129, 140, 248, 0.5); |
| backdrop-filter: blur(25px) saturate(200%); |
| opacity: 0; |
| transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); |
| z-index: 0; |
| box-shadow: |
| inset 0 3px 8px rgba(255, 255, 255, 0.25), |
| inset 0 -3px 8px rgba(0, 0, 0, 0.3), |
| 0 6px 20px rgba(129, 140, 248, 0.4), |
| 0 0 40px rgba(129, 140, 248, 0.3); |
| } |
|
|
| .nav-button:hover::before { |
| opacity: 1; |
| transform: scale(1.05); |
| box-shadow: |
| inset 0 3px 10px rgba(255, 255, 255, 0.3), |
| inset 0 -3px 10px rgba(0, 0, 0, 0.35), |
| 0 8px 24px rgba(129, 140, 248, 0.5), |
| 0 0 50px rgba(129, 140, 248, 0.4); |
| border-color: rgba(129, 140, 248, 0.7); |
| } |
|
|
| .nav-button.active::before { |
| opacity: 1; |
| transform: scale(1.1); |
| background: linear-gradient(135deg, rgba(129, 140, 248, 0.45), rgba(34, 211, 238, 0.4)); |
| border-color: rgba(129, 140, 248, 0.8); |
| box-shadow: |
| inset 0 4px 12px rgba(255, 255, 255, 0.35), |
| inset 0 -4px 12px rgba(0, 0, 0, 0.4), |
| 0 10px 30px rgba(129, 140, 248, 0.6), |
| 0 0 60px rgba(129, 140, 248, 0.5), |
| 0 0 80px rgba(34, 211, 238, 0.3); |
| } |
|
|
| .nav-button[data-nav="page-overview"] svg { |
| color: #60A5FA; |
| filter: drop-shadow(0 2px 4px rgba(96, 165, 250, 0.5)); |
| } |
|
|
| .nav-button[data-nav="page-market"] svg { |
| color: #A78BFA; |
| filter: drop-shadow(0 2px 4px rgba(167, 139, 250, 0.5)); |
| } |
|
|
| .nav-button[data-nav="page-chart"] svg { |
| color: #F472B6; |
| filter: drop-shadow(0 2px 4px rgba(244, 114, 182, 0.5)); |
| } |
|
|
| .nav-button[data-nav="page-ai"] svg { |
| color: #34D399; |
| filter: drop-shadow(0 2px 4px rgba(52, 211, 153, 0.5)); |
| } |
|
|
| .nav-button[data-nav="page-news"] svg { |
| color: #FBBF24; |
| filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.5)); |
| } |
|
|
| .nav-button[data-nav="page-providers"] svg { |
| color: #22D3EE; |
| filter: drop-shadow(0 2px 4px rgba(34, 211, 238, 0.5)); |
| } |
|
|
| .nav-button[data-nav="page-api"] svg { |
| color: #818CF8; |
| filter: drop-shadow(0 2px 4px rgba(129, 140, 248, 0.5)); |
| } |
|
|
| .nav-button[data-nav="page-debug"] svg { |
| color: #F87171; |
| filter: drop-shadow(0 2px 4px rgba(248, 113, 113, 0.5)); |
| } |
|
|
| .nav-button[data-nav="page-datasets"] svg { |
| color: #C084FC; |
| filter: drop-shadow(0 2px 4px rgba(192, 132, 252, 0.5)); |
| } |
|
|
| .nav-button[data-nav="page-settings"] svg { |
| color: #94A3B8; |
| filter: drop-shadow(0 2px 4px rgba(148, 163, 184, 0.5)); |
| } |
|
|
| .nav-button::after { |
| content: ''; |
| position: absolute; |
| inset: 0; |
| background: rgba(143, 136, 255, 0.05); |
| border-radius: 10px; |
| opacity: 0; |
| transition: opacity 0.25s ease; |
| z-index: -1; |
| } |
|
|
| .nav-button svg { |
| width: 20px; |
| height: 20px; |
| fill: currentColor; |
| stroke: currentColor; |
| stroke-width: 2; |
| transition: all 0.25s ease; |
| flex-shrink: 0; |
| opacity: 1; |
| filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)); |
| } |
|
|
| .nav-button:hover { |
| color: #ffffff; |
| background: linear-gradient(135deg, rgba(129, 140, 248, 0.3), rgba(34, 211, 238, 0.25)); |
| transform: translateX(4px); |
| box-shadow: |
| inset 0 2px 4px rgba(255, 255, 255, 0.15), |
| 0 4px 16px rgba(129, 140, 248, 0.3), |
| 0 0 25px rgba(129, 140, 248, 0.2); |
| } |
|
|
| .nav-button:hover svg { |
| filter: drop-shadow(0 3px 10px rgba(129, 140, 248, 0.7)); |
| opacity: 1; |
| } |
|
|
| .nav-button:hover::before { |
| opacity: 1; |
| background: linear-gradient(135deg, rgba(129, 140, 248, 0.35), rgba(34, 211, 238, 0.3)); |
| border-color: rgba(129, 140, 248, 0.6); |
| box-shadow: |
| inset 0 2px 6px rgba(255, 255, 255, 0.25), |
| inset 0 -2px 6px rgba(0, 0, 0, 0.3), |
| 0 6px 20px rgba(129, 140, 248, 0.4), |
| 0 0 35px rgba(129, 140, 248, 0.3); |
| } |
|
|
| .nav-button:hover::after { |
| opacity: 1; |
| background: rgba(129, 140, 248, 0.12); |
| } |
|
|
| .nav-button.active { |
| background: linear-gradient(135deg, rgba(129, 140, 248, 0.2), rgba(34, 211, 238, 0.15)); |
| color: #ffffff; |
| box-shadow: |
| inset 0 2px 6px rgba(255, 255, 255, 0.15), |
| 0 8px 24px rgba(129, 140, 248, 0.3), |
| 0 0 40px rgba(129, 140, 248, 0.2); |
| border: 1px solid rgba(129, 140, 248, 0.4); |
| font-weight: 700; |
| transform: translateX(6px); |
| } |
|
|
| .nav-button.active svg { |
| filter: drop-shadow(0 4px 16px rgba(129, 140, 248, 0.9)) drop-shadow(0 0 20px rgba(34, 211, 238, 0.6)); |
| opacity: 1; |
| transform: scale(1.1); |
| } |
|
|
| .nav-button.active::after { |
| opacity: 1; |
| background: rgba(129, 140, 248, 0.1); |
| } |
|
|
| .sidebar-footer { |
| margin-top: auto; |
| padding: 0; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
|
|
| .footer-badge { |
| display: inline-flex; |
| align-items: center; |
| gap: 8px; |
| padding: 10px 16px; |
| background: rgba(255, 255, 255, 0.05); |
| border: 1px solid rgba(255, 255, 255, 0.12); |
| border-radius: 12px; |
| font-size: 0.75rem; |
| font-weight: 600; |
| color: rgba(226, 232, 240, 0.8); |
| font-family: 'Manrope', sans-serif; |
| letter-spacing: 0.05em; |
| text-transform: uppercase; |
| transition: all 0.3s ease; |
| } |
|
|
| .footer-badge svg { |
| width: 14px; |
| height: 14px; |
| opacity: 0.7; |
| transition: all 0.3s ease; |
| } |
|
|
| .footer-badge:hover { |
| background: rgba(255, 255, 255, 0.06); |
| border-color: rgba(143, 136, 255, 0.3); |
| color: var(--text-primary); |
| transform: translateY(-2px); |
| } |
|
|
| .footer-badge:hover svg { |
| opacity: 1; |
| color: var(--primary); |
| } |
|
|
| .main-area { |
| flex: 1; |
| padding: 32px; |
| display: flex; |
| flex-direction: column; |
| gap: 24px; |
| } |
|
|
| .topbar { |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| padding: 28px 36px; |
| border-radius: 24px; |
| background: linear-gradient(135deg, var(--glass-bg-strong) 0%, var(--glass-bg) 100%); |
| border: 1px solid var(--glass-border-strong); |
| box-shadow: |
| var(--shadow-strong), |
| inset 0 1px 0 rgba(255, 255, 255, 0.15), |
| var(--shadow-glow-primary), |
| 0 0 60px rgba(129, 140, 248, 0.15); |
| backdrop-filter: blur(30px) saturate(180%); |
| flex-wrap: wrap; |
| gap: 20px; |
| position: relative; |
| overflow: hidden; |
| animation: headerGlow 4s ease-in-out infinite alternate; |
| } |
|
|
| @keyframes headerGlow { |
| 0% { |
| box-shadow: |
| var(--shadow-strong), |
| inset 0 1px 0 rgba(255, 255, 255, 0.15), |
| var(--shadow-glow-primary), |
| 0 0 60px rgba(129, 140, 248, 0.15); |
| } |
| 100% { |
| box-shadow: |
| var(--shadow-strong), |
| inset 0 1px 0 rgba(255, 255, 255, 0.2), |
| var(--shadow-glow-primary), |
| 0 0 80px rgba(129, 140, 248, 0.25), |
| 0 0 120px rgba(34, 211, 238, 0.15); |
| } |
| } |
|
|
| .topbar::before { |
| content: ''; |
| position: absolute; |
| top: 0; |
| left: 0; |
| right: 0; |
| height: 3px; |
| background: linear-gradient(90deg, |
| transparent, |
| var(--secondary) 20%, |
| var(--primary) 50%, |
| var(--secondary) 80%, |
| transparent); |
| opacity: 0.8; |
| animation: headerShine 3s linear infinite; |
| } |
|
|
| @keyframes headerShine { |
| 0% { |
| transform: translateX(-100%); |
| opacity: 0; |
| } |
| 50% { |
| opacity: 1; |
| } |
| 100% { |
| transform: translateX(100%); |
| opacity: 0; |
| } |
| } |
|
|
| .topbar::after { |
| content: ''; |
| position: absolute; |
| top: -50%; |
| left: -50%; |
| width: 200%; |
| height: 200%; |
| background: radial-gradient(circle, rgba(129, 140, 248, 0.1) 0%, transparent 70%); |
| animation: headerPulse 6s ease-in-out infinite; |
| pointer-events: none; |
| } |
|
|
| @keyframes headerPulse { |
| 0%, 100% { |
| transform: scale(1); |
| opacity: 0.3; |
| } |
| 50% { |
| transform: scale(1.1); |
| opacity: 0.5; |
| } |
| } |
|
|
| .topbar-content { |
| display: flex; |
| align-items: center; |
| gap: 16px; |
| flex: 1; |
| } |
|
|
| .topbar-icon { |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| width: 80px; |
| height: 80px; |
| border-radius: 50%; |
| background: linear-gradient(135deg, rgba(129, 140, 248, 0.2) 0%, rgba(34, 211, 238, 0.15) 100%); |
| border: 2px solid rgba(129, 140, 248, 0.3); |
| color: var(--primary-light); |
| flex-shrink: 0; |
| box-shadow: |
| inset 0 2px 4px rgba(255, 255, 255, 0.2), |
| inset 0 -2px 4px rgba(0, 0, 0, 0.3), |
| 0 6px 20px rgba(0, 0, 0, 0.4), |
| 0 0 40px rgba(129, 140, 248, 0.3), |
| 0 0 60px rgba(34, 211, 238, 0.2); |
| position: relative; |
| transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); |
| animation: iconFloat 3s ease-in-out infinite; |
| backdrop-filter: blur(20px) saturate(180%); |
| } |
|
|
| @keyframes iconFloat { |
| 0%, 100% { |
| transform: translateY(0); |
| } |
| 50% { |
| transform: translateY(-3px); |
| } |
| } |
|
|
| .topbar-icon:hover { |
| box-shadow: |
| inset 0 1px 2px rgba(255, 255, 255, 0.2), |
| inset 0 -1px 2px rgba(0, 0, 0, 0.3), |
| 0 6px 16px rgba(0, 0, 0, 0.4), |
| 0 0 30px rgba(129, 140, 248, 0.3); |
| border-color: var(--primary); |
| } |
|
|
| .topbar-icon::before { |
| content: ''; |
| position: absolute; |
| top: 2px; |
| left: 2px; |
| right: 2px; |
| height: 50%; |
| border-radius: 14px 14px 0 0; |
| background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent); |
| pointer-events: none; |
| } |
|
|
| .topbar-icon svg { |
| position: relative; |
| z-index: 1; |
| width: 36px; |
| height: 36px; |
| filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)); |
| } |
|
|
| .topbar-text { |
| display: flex; |
| flex-direction: column; |
| gap: 6px; |
| } |
|
|
| .topbar h1 { |
| margin: 0; |
| font-size: 2.25rem; |
| font-weight: 900; |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| letter-spacing: -0.04em; |
| line-height: 1.2; |
| display: flex; |
| align-items: baseline; |
| gap: 12px; |
| position: relative; |
| z-index: 1; |
| filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)); |
| } |
|
|
| .title-gradient { |
| background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 80%, var(--text-soft) 100%); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| background-clip: text; |
| text-shadow: 0 0 40px rgba(255, 255, 255, 0.2); |
| position: relative; |
| animation: titleShimmer 3s ease-in-out infinite; |
| } |
|
|
| @keyframes titleShimmer { |
| 0%, 100% { |
| filter: brightness(1); |
| } |
| 50% { |
| filter: brightness(1.2); |
| } |
| } |
|
|
| .title-accent { |
| background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| background-clip: text; |
| font-size: 0.85em; |
| position: relative; |
| animation: accentPulse 2s ease-in-out infinite; |
| } |
|
|
| @keyframes accentPulse { |
| 0%, 100% { |
| opacity: 1; |
| filter: drop-shadow(0 0 8px rgba(129, 140, 248, 0.4)); |
| } |
| 50% { |
| opacity: 0.9; |
| filter: drop-shadow(0 0 12px rgba(129, 140, 248, 0.6)); |
| } |
| } |
|
|
| .topbar p.text-muted { |
| margin: 0; |
| font-size: 0.875rem; |
| color: var(--text-muted); |
| font-weight: 500; |
| font-family: 'Manrope', sans-serif; |
| display: flex; |
| align-items: center; |
| gap: 4px; |
| } |
|
|
| .topbar p.text-muted svg { |
| opacity: 0.7; |
| color: var(--primary); |
| } |
|
|
| .status-group { |
| display: flex; |
| gap: 12px; |
| flex-wrap: wrap; |
| } |
|
|
| .status-pill { |
| display: flex; |
| align-items: center; |
| gap: 10px; |
| padding: 10px 18px; |
| border-radius: 14px; |
| background: linear-gradient(135deg, rgba(129, 140, 248, 0.15), rgba(34, 211, 238, 0.1)); |
| border: 2px solid rgba(129, 140, 248, 0.3); |
| font-size: 0.8125rem; |
| font-weight: 700; |
| text-transform: uppercase; |
| letter-spacing: 0.08em; |
| font-family: 'Manrope', sans-serif; |
| color: rgba(226, 232, 240, 0.95); |
| transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); |
| position: relative; |
| overflow: visible; |
| box-shadow: |
| 0 4px 12px rgba(0, 0, 0, 0.3), |
| inset 0 1px 0 rgba(255, 255, 255, 0.15); |
| cursor: pointer; |
| backdrop-filter: blur(15px) saturate(180%); |
| } |
|
|
| .status-pill:hover { |
| background: linear-gradient(135deg, rgba(129, 140, 248, 0.25), rgba(34, 211, 238, 0.2)); |
| box-shadow: |
| 0 6px 16px rgba(0, 0, 0, 0.4), |
| inset 0 1px 0 rgba(255, 255, 255, 0.2), |
| 0 0 20px rgba(129, 140, 248, 0.3); |
| border-color: rgba(129, 140, 248, 0.5); |
| color: #ffffff; |
| transform: translateY(-1px); |
| } |
|
|
| .status-pill::before { |
| content: ''; |
| position: absolute; |
| inset: 0; |
| background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent); |
| opacity: 0; |
| transition: opacity 0.3s ease; |
| } |
|
|
| .status-pill:hover::before { |
| opacity: 1; |
| } |
|
|
| .status-dot { |
| width: 10px; |
| height: 10px; |
| border-radius: 50%; |
| background: #FBBF24; |
| position: relative; |
| flex-shrink: 0; |
| box-shadow: |
| 0 0 12px #FBBF24, |
| 0 0 20px rgba(251, 191, 36, 0.5), |
| 0 2px 4px rgba(0, 0, 0, 0.3); |
| animation: pulse-dot 2s ease-in-out infinite; |
| border: 1px solid rgba(255, 255, 255, 0.3); |
| } |
|
|
| @keyframes pulse-dot { |
| 0%, 100% { |
| opacity: 1; |
| transform: scale(1); |
| box-shadow: 0 0 12px #FBBF24, 0 0 20px rgba(251, 191, 36, 0.5); |
| } |
| 50% { |
| opacity: 0.8; |
| transform: scale(1.1); |
| box-shadow: 0 0 16px #FBBF24, 0 0 30px rgba(251, 191, 36, 0.7); |
| } |
| } |
|
|
| .status-pill[data-state="ok"] .status-dot { |
| background: #34D399; |
| box-shadow: |
| 0 0 12px #34D399, |
| 0 0 20px rgba(52, 211, 153, 0.5), |
| 0 2px 4px rgba(0, 0, 0, 0.3); |
| animation: none; |
| } |
|
|
| .status-pill[data-state="error"] .status-dot { |
| background: #F87171; |
| box-shadow: |
| 0 0 12px #F87171, |
| 0 0 20px rgba(248, 113, 113, 0.5), |
| 0 2px 4px rgba(0, 0, 0, 0.3); |
| animation: none; |
| } |
|
|
| .status-pill .status-icon { |
| width: 16px; |
| height: 16px; |
| flex-shrink: 0; |
| color: rgba(226, 232, 240, 0.9); |
| filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)); |
| transition: all 0.3s ease; |
| } |
|
|
| .status-pill:hover .status-icon { |
| color: #ffffff; |
| filter: drop-shadow(0 2px 4px rgba(129, 140, 248, 0.6)); |
| } |
|
|
| .status-pill[data-state="ok"] .status-icon { |
| color: #34D399; |
| } |
|
|
| .status-pill[data-state="error"] .status-icon { |
| color: #F87171; |
| } |
|
|
| .status-pill:hover .status-dot { |
| box-shadow: |
| 0 0 12px var(--warning), |
| 0 2px 6px rgba(0, 0, 0, 0.25); |
| } |
|
|
| .status-pill[data-state='ok'] { |
| background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%); |
| border: 1px solid var(--success); |
| color: #ffffff; |
| box-shadow: |
| 0 2px 8px var(--success-glow), |
| inset 0 1px 0 rgba(255, 255, 255, 0.2); |
| font-weight: 700; |
| position: relative; |
| } |
|
|
| .status-pill[data-state='ok']:hover { |
| background: linear-gradient(135deg, var(--success-dark) 0%, #047857 100%); |
| box-shadow: |
| 0 4px 12px var(--success-glow), |
| inset 0 1px 0 rgba(255, 255, 255, 0.3); |
| } |
|
|
| @keyframes live-pulse { |
| 0%, 100% { |
| box-shadow: |
| inset 0 1px 2px rgba(255, 255, 255, 0.2), |
| inset 0 -1px 2px rgba(0, 0, 0, 0.3), |
| 0 4px 16px rgba(34, 197, 94, 0.4), |
| 0 0 30px rgba(34, 197, 94, 0.3), |
| 0 0 50px rgba(16, 185, 129, 0.2); |
| } |
| 50% { |
| box-shadow: |
| inset 0 1px 2px rgba(255, 255, 255, 0.25), |
| inset 0 -1px 2px rgba(0, 0, 0, 0.4), |
| 0 6px 24px rgba(34, 197, 94, 0.5), |
| 0 0 40px rgba(34, 197, 94, 0.4), |
| 0 0 60px rgba(16, 185, 129, 0.3); |
| } |
| } |
|
|
| .status-pill[data-state='ok']::before { |
| content: ''; |
| position: absolute; |
| top: 2px; |
| left: 2px; |
| right: 2px; |
| height: 50%; |
| border-radius: 999px 999px 0 0; |
| background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent); |
| pointer-events: none; |
| } |
|
|
| .status-pill[data-state='ok'] .status-dot { |
| background: #ffffff; |
| border: 2px solid #10b981; |
| box-shadow: |
| 0 0 8px rgba(16, 185, 129, 0.6), |
| 0 2px 4px rgba(0, 0, 0, 0.2), |
| inset 0 1px 2px rgba(255, 255, 255, 0.8); |
| } |
|
|
| .status-pill[data-state='ok']:hover .status-dot { |
| box-shadow: |
| 0 0 12px rgba(16, 185, 129, 0.8), |
| 0 2px 6px rgba(0, 0, 0, 0.25), |
| inset 0 1px 2px rgba(255, 255, 255, 0.9); |
| } |
|
|
| @keyframes live-dot-pulse { |
| 0%, 100% { |
| transform: scale(1); |
| box-shadow: |
| inset 0 1px 2px rgba(255, 255, 255, 0.4), |
| inset 0 -1px 2px rgba(0, 0, 0, 0.4), |
| 0 0 16px rgba(34, 197, 94, 0.8), |
| 0 0 32px rgba(34, 197, 94, 0.6), |
| 0 0 48px rgba(16, 185, 129, 0.4); |
| } |
| 50% { |
| transform: scale(1.15); |
| box-shadow: |
| inset 0 1px 2px rgba(255, 255, 255, 0.5), |
| inset 0 -1px 2px rgba(0, 0, 0, 0.5), |
| 0 0 20px rgba(34, 197, 94, 1), |
| 0 0 40px rgba(34, 197, 94, 0.8), |
| 0 0 60px rgba(16, 185, 129, 0.6); |
| } |
| } |
|
|
| .status-pill[data-state='ok']::after { |
| display: none; |
| } |
|
|
| .status-pill[data-state='warn'] { |
| background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); |
| border: 2px solid #f59e0b; |
| color: #ffffff; |
| box-shadow: |
| 0 2px 8px rgba(245, 158, 11, 0.3), |
| inset 0 1px 0 rgba(255, 255, 255, 0.3); |
| } |
|
|
| .status-pill[data-state='warn']:hover { |
| background: linear-gradient(135deg, #d97706 0%, #b45309 100%); |
| box-shadow: |
| 0 4px 12px rgba(245, 158, 11, 0.4), |
| inset 0 1px 0 rgba(255, 255, 255, 0.4); |
| } |
|
|
| .status-pill[data-state='warn'] .status-dot { |
| background: #ffffff; |
| border: 2px solid #f59e0b; |
| box-shadow: |
| 0 0 8px rgba(245, 158, 11, 0.6), |
| 0 2px 4px rgba(0, 0, 0, 0.2), |
| inset 0 1px 2px rgba(255, 255, 255, 0.8); |
| } |
|
|
| .status-pill[data-state='warn']:hover .status-dot { |
| box-shadow: |
| 0 0 12px rgba(245, 158, 11, 0.8), |
| 0 2px 6px rgba(0, 0, 0, 0.25), |
| inset 0 1px 2px rgba(255, 255, 255, 0.9); |
| } |
|
|
| .status-pill[data-state='error'] { |
| background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); |
| border: 2px solid #ef4444; |
| color: #ffffff; |
| box-shadow: |
| 0 2px 8px rgba(239, 68, 68, 0.3), |
| inset 0 1px 0 rgba(255, 255, 255, 0.3); |
| } |
|
|
| .status-pill[data-state='error']:hover { |
| background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%); |
| box-shadow: |
| 0 4px 12px rgba(239, 68, 68, 0.4), |
| inset 0 1px 0 rgba(255, 255, 255, 0.4); |
| } |
|
|
| .status-pill[data-state='error'] .status-dot { |
| background: #ffffff; |
| border: 2px solid #ef4444; |
| box-shadow: |
| 0 0 8px rgba(239, 68, 68, 0.6), |
| 0 2px 4px rgba(0, 0, 0, 0.2), |
| inset 0 1px 2px rgba(255, 255, 255, 0.8); |
| } |
|
|
| .status-pill[data-state='error']:hover .status-dot { |
| box-shadow: |
| 0 0 12px rgba(239, 68, 68, 0.8), |
| 0 2px 6px rgba(0, 0, 0, 0.25), |
| inset 0 1px 2px rgba(255, 255, 255, 0.9); |
| } |
|
|
| @keyframes pulse-green { |
| 0%, 100% { |
| transform: scale(1); |
| opacity: 1; |
| box-shadow: |
| 0 0 16px #86efac, |
| 0 0 32px rgba(74, 222, 128, 0.8), |
| 0 0 48px rgba(34, 197, 94, 0.6); |
| } |
| 50% { |
| transform: scale(1.3); |
| opacity: 0.9; |
| box-shadow: |
| 0 0 24px #86efac, |
| 0 0 48px rgba(74, 222, 128, 1), |
| 0 0 72px rgba(34, 197, 94, 0.8); |
| } |
| } |
|
|
| @keyframes glow-pulse { |
| 0%, 100% { |
| opacity: 0.6; |
| transform: scale(1); |
| } |
| 50% { |
| opacity: 1; |
| transform: scale(1.1); |
| } |
| } |
|
|
| .page-container { |
| flex: 1; |
| } |
|
|
| .page { |
| display: none; |
| animation: fadeIn 0.6s ease; |
| } |
|
|
| .page.active { |
| display: block; |
| } |
|
|
| .section-header { |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| margin-bottom: 24px; |
| padding-bottom: 16px; |
| border-bottom: 2px solid var(--glass-border); |
| position: relative; |
| } |
|
|
| .section-header::after { |
| content: ''; |
| position: absolute; |
| bottom: -2px; |
| left: 0; |
| width: 60px; |
| height: 2px; |
| background: linear-gradient(90deg, var(--primary), var(--secondary)); |
| border-radius: 2px; |
| } |
|
|
| .section-title { |
| font-size: 2rem; |
| font-weight: 900; |
| letter-spacing: -0.03em; |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| margin: 0; |
| background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| background-clip: text; |
| position: relative; |
| filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)); |
| } |
|
|
| .glass-card { |
| background: var(--glass-bg); |
| backdrop-filter: blur(35px) saturate(180%); |
| -webkit-backdrop-filter: blur(35px) saturate(180%); |
| border: 1px solid var(--glass-border); |
| border-radius: 20px; |
| padding: 28px; |
| box-shadow: |
| 0 8px 32px rgba(0, 0, 0, 0.5), |
| inset 0 1px 0 rgba(255, 255, 255, 0.1), |
| inset 0 -1px 0 rgba(0, 0, 0, 0.2), |
| var(--shadow-glow-primary); |
| position: relative; |
| overflow: visible; |
| transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); |
| } |
|
|
| .glass-card::before { |
| content: ''; |
| position: absolute; |
| inset: -4px; |
| background: linear-gradient(135deg, |
| var(--secondary-glow) 0%, |
| var(--primary-glow) 50%, |
| rgba(244, 114, 182, 0.3) 100%); |
| border-radius: 24px; |
| opacity: 0; |
| transition: opacity 0.4s ease; |
| z-index: -1; |
| filter: blur(20px); |
| animation: card-glow-pulse 4s ease-in-out infinite; |
| } |
|
|
| @keyframes card-glow-pulse { |
| 0%, 100% { |
| opacity: 0; |
| filter: blur(20px); |
| } |
| 50% { |
| opacity: 0.4; |
| filter: blur(25px); |
| } |
| } |
|
|
| .glass-card::after { |
| content: ''; |
| position: absolute; |
| top: 0; |
| left: 0; |
| right: 0; |
| height: 3px; |
| background: linear-gradient(90deg, |
| transparent, |
| var(--secondary), |
| var(--primary), |
| var(--accent), |
| transparent); |
| border-radius: 20px 20px 0 0; |
| opacity: 0.7; |
| animation: card-shimmer 4s infinite; |
| } |
|
|
| @keyframes card-shimmer { |
| 0%, 100% { opacity: 0.7; } |
| 50% { opacity: 1; } |
| } |
|
|
|
|
| .glass-card:hover { |
| background: var(--glass-bg-strong); |
| box-shadow: |
| 0 16px 48px rgba(0, 0, 0, 0.6), |
| var(--shadow-glow-primary), |
| var(--shadow-glow-secondary), |
| inset 0 1px 0 rgba(255, 255, 255, 0.15), |
| inset 0 -1px 0 rgba(0, 0, 0, 0.3); |
| border-color: var(--glass-border-strong); |
| } |
|
|
| .glass-card:hover::before { |
| opacity: 0.8; |
| filter: blur(30px); |
| } |
|
|
| .glass-card:hover::after { |
| opacity: 1; |
| height: 4px; |
| } |
|
|
| .card-header { |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| margin-bottom: 20px; |
| padding-bottom: 16px; |
| border-bottom: 1px solid var(--glass-border); |
| } |
|
|
| .card-header h4 { |
| margin: 0; |
| font-size: 1.25rem; |
| font-weight: 700; |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| color: var(--text-primary); |
| letter-spacing: -0.02em; |
| } |
|
|
| .glass-card h4 { |
| font-size: 1.25rem; |
| font-weight: 700; |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| margin: 0 0 20px 0; |
| color: var(--text-primary); |
| letter-spacing: -0.02em; |
| background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| background-clip: text; |
| } |
|
|
| .glass-card::before { |
| content: ''; |
| position: absolute; |
| inset: 0; |
| background: linear-gradient(120deg, transparent, var(--glass-highlight), transparent); |
| opacity: 0; |
| transition: opacity 0.4s ease; |
| } |
|
|
| .glass-card:hover::before { |
| opacity: 1; |
| } |
|
|
| .stats-grid { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); |
| gap: 18px; |
| margin-bottom: 24px; |
| } |
|
|
| .stat-card { |
| display: flex; |
| flex-direction: column; |
| gap: 18px; |
| position: relative; |
| background: linear-gradient(135deg, rgba(129, 140, 248, 0.15), rgba(34, 211, 238, 0.1)); |
| padding: 28px; |
| border-radius: 20px; |
| border: 2px solid rgba(129, 140, 248, 0.25); |
| backdrop-filter: blur(30px) saturate(180%); |
| -webkit-backdrop-filter: blur(30px) saturate(180%); |
| box-shadow: |
| 0 8px 32px rgba(0, 0, 0, 0.4), |
| inset 0 1px 0 rgba(255, 255, 255, 0.2), |
| inset 0 -1px 0 rgba(0, 0, 0, 0.2); |
| transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); |
| overflow: visible; |
| } |
|
|
| .stat-card::before { |
| content: ''; |
| position: absolute; |
| inset: -2px; |
| border-radius: 22px; |
| background: linear-gradient(135deg, |
| rgba(129, 140, 248, 0.2) 0%, |
| rgba(34, 211, 238, 0.15) 100%); |
| opacity: 0; |
| transition: opacity 0.3s ease; |
| z-index: -1; |
| filter: blur(8px); |
| } |
|
|
| .stat-card::after { |
| content: ''; |
| position: absolute; |
| top: 0; |
| left: 0; |
| right: 0; |
| height: 2px; |
| background: linear-gradient(90deg, |
| transparent, |
| rgba(129, 140, 248, 0.6), |
| rgba(34, 211, 238, 0.6), |
| transparent); |
| border-radius: 20px 20px 0 0; |
| opacity: 0.5; |
| transition: opacity 0.3s ease; |
| } |
|
|
| .stat-card:hover { |
| border-color: rgba(0, 212, 255, 0.5); |
| box-shadow: |
| 0 16px 48px rgba(0, 0, 0, 0.5), |
| 0 0 40px rgba(0, 212, 255, 0.4), |
| 0 0 80px rgba(139, 92, 246, 0.3), |
| inset 0 1px 0 rgba(255, 255, 255, 0.3), |
| inset 0 -1px 0 rgba(0, 0, 0, 0.3); |
| } |
|
|
| .stat-card:hover::before { |
| opacity: 0.4; |
| filter: blur(10px); |
| } |
|
|
| .stat-card:hover::after { |
| opacity: 0.8; |
| height: 2px; |
| } |
|
|
| .stat-header { |
| display: flex; |
| align-items: center; |
| gap: 0.75rem; |
| } |
|
|
| .stat-icon { |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| width: 52px; |
| height: 52px; |
| border-radius: 14px; |
| background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(139, 92, 246, 0.2)); |
| flex-shrink: 0; |
| border: 2px solid rgba(0, 212, 255, 0.3); |
| box-shadow: |
| inset 0 1px 2px rgba(255, 255, 255, 0.2), |
| inset 0 -1px 2px rgba(0, 0, 0, 0.3), |
| 0 4px 12px rgba(0, 212, 255, 0.3), |
| 0 0 20px rgba(0, 212, 255, 0.2); |
| transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); |
| position: relative; |
| color: #00D4FF; |
| overflow: visible; |
| } |
|
|
| .stat-icon::after { |
| content: ''; |
| position: absolute; |
| inset: -2px; |
| border-radius: 16px; |
| background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), rgba(139, 92, 246, 0.4)); |
| opacity: 0; |
| filter: blur(12px); |
| transition: opacity 0.4s ease; |
| z-index: -1; |
| } |
|
|
| .stat-icon::before { |
| content: ''; |
| position: absolute; |
| top: 2px; |
| left: 2px; |
| right: 2px; |
| height: 50%; |
| border-radius: 12px 12px 0 0; |
| background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent); |
| pointer-events: none; |
| } |
|
|
| .stat-icon svg { |
| position: relative; |
| z-index: 1; |
| width: 30px; |
| height: 30px; |
| opacity: 1; |
| filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5)); |
| stroke-width: 2.5; |
| } |
|
|
| .stat-card:hover .stat-icon { |
| box-shadow: |
| inset 0 1px 2px rgba(255, 255, 255, 0.25), |
| inset 0 -1px 2px rgba(0, 0, 0, 0.4), |
| 0 8px 24px rgba(0, 212, 255, 0.5), |
| 0 0 40px rgba(0, 212, 255, 0.4), |
| 0 0 60px rgba(139, 92, 246, 0.3); |
| border-color: rgba(0, 212, 255, 0.6); |
| background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(139, 92, 246, 0.3)); |
| } |
|
|
| .stat-card:hover .stat-icon::after { |
| opacity: 0.8; |
| filter: blur(16px); |
| } |
|
|
| .stat-card:hover .stat-icon svg { |
| opacity: 1; |
| } |
|
|
| .stat-card h3 { |
| font-size: 0.8125rem; |
| font-weight: 700; |
| text-transform: uppercase; |
| letter-spacing: 0.1em; |
| color: rgba(255, 255, 255, 0.7); |
| margin: 0; |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); |
| } |
|
|
| .stat-label { |
| font-size: 0.8125rem; |
| font-weight: 700; |
| text-transform: uppercase; |
| letter-spacing: 0.1em; |
| color: rgba(226, 232, 240, 0.95); |
| margin: 0; |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); |
| line-height: 1.5; |
| } |
|
|
| .stat-value { |
| font-size: 2.75rem; |
| font-weight: 900; |
| margin: 0; |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| letter-spacing: -0.05em; |
| line-height: 1.2; |
| color: #ffffff; |
| text-shadow: |
| 0 2px 8px rgba(0, 0, 0, 0.6), |
| 0 0 20px rgba(129, 140, 248, 0.4), |
| 0 0 40px rgba(34, 211, 238, 0.3); |
| position: relative; |
| } |
|
|
| .stat-card:hover .stat-value { |
| text-shadow: |
| 0 2px 10px rgba(0, 0, 0, 0.7), |
| 0 0 30px rgba(129, 140, 248, 0.6), |
| 0 0 50px rgba(34, 211, 238, 0.5); |
| transform: scale(1.02); |
| } |
|
|
| .stat-value-wrapper { |
| display: flex; |
| flex-direction: column; |
| gap: 0.5rem; |
| margin: 0.5rem 0; |
| } |
|
|
| .stat-change { |
| display: inline-flex; |
| align-items: center; |
| gap: 0.375rem; |
| font-size: 0.8125rem; |
| font-weight: 600; |
| font-family: 'Manrope', sans-serif; |
| width: fit-content; |
| transition: all 0.2s ease; |
| } |
|
|
| .change-icon-wrapper { |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| width: 16px; |
| height: 16px; |
| flex-shrink: 0; |
| opacity: 0.8; |
| } |
|
|
| .change-icon-wrapper.positive { |
| color: #22c55e; |
| } |
|
|
| .change-icon-wrapper.negative { |
| color: #ef4444; |
| } |
|
|
| .stat-change.positive { |
| color: #4ade80; |
| background: rgba(34, 197, 94, 0.2); |
| padding: 4px 10px; |
| border-radius: 8px; |
| border: 1px solid rgba(34, 197, 94, 0.4); |
| box-shadow: |
| 0 2px 8px rgba(34, 197, 94, 0.3), |
| inset 0 1px 0 rgba(255, 255, 255, 0.1); |
| text-shadow: 0 0 8px rgba(34, 197, 94, 0.6); |
| font-weight: 700; |
| } |
|
|
| .stat-change.negative { |
| color: #f87171; |
| background: rgba(239, 68, 68, 0.2); |
| padding: 4px 10px; |
| border-radius: 8px; |
| border: 1px solid rgba(239, 68, 68, 0.4); |
| box-shadow: |
| 0 2px 8px rgba(239, 68, 68, 0.3), |
| inset 0 1px 0 rgba(255, 255, 255, 0.1); |
| text-shadow: 0 0 8px rgba(239, 68, 68, 0.6); |
| font-weight: 700; |
| } |
|
|
| .change-value { |
| font-weight: 600; |
| letter-spacing: 0.01em; |
| } |
|
|
| .stat-metrics { |
| display: flex; |
| gap: 1rem; |
| margin-top: auto; |
| padding-top: 1rem; |
| border-top: 2px solid rgba(255, 255, 255, 0.12); |
| background: linear-gradient(90deg, |
| transparent, |
| rgba(0, 212, 255, 0.05), |
| rgba(139, 92, 246, 0.05), |
| transparent); |
| margin-left: -20px; |
| margin-right: -20px; |
| padding-left: 20px; |
| padding-right: 20px; |
| border-radius: 0 0 20px 20px; |
| } |
|
|
| .stat-metric { |
| display: flex; |
| flex-direction: column; |
| gap: 0.25rem; |
| flex: 1; |
| } |
|
|
| .stat-metric .metric-label { |
| font-size: 0.7rem; |
| text-transform: uppercase; |
| letter-spacing: 0.1em; |
| color: rgba(255, 255, 255, 0.6); |
| font-weight: 700; |
| font-family: 'Manrope', sans-serif; |
| text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); |
| } |
|
|
| .stat-metric .metric-value { |
| font-size: 0.9375rem; |
| font-weight: 700; |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| color: rgba(255, 255, 255, 0.9); |
| display: flex; |
| align-items: center; |
| gap: 6px; |
| text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); |
| } |
|
|
| .metric-icon { |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| width: 18px; |
| height: 18px; |
| border-radius: 4px; |
| font-size: 0.75rem; |
| font-weight: 700; |
| flex-shrink: 0; |
| } |
|
|
| .metric-icon.positive { |
| background: rgba(34, 197, 94, 0.3); |
| color: #4ade80; |
| border: 1px solid rgba(34, 197, 94, 0.5); |
| box-shadow: |
| 0 2px 8px rgba(34, 197, 94, 0.4), |
| inset 0 1px 0 rgba(255, 255, 255, 0.2); |
| text-shadow: 0 0 8px rgba(34, 197, 94, 0.6); |
| } |
|
|
| .metric-icon.negative { |
| background: rgba(239, 68, 68, 0.3); |
| color: #f87171; |
| border: 1px solid rgba(239, 68, 68, 0.5); |
| box-shadow: |
| 0 2px 8px rgba(239, 68, 68, 0.4), |
| inset 0 1px 0 rgba(255, 255, 255, 0.2); |
| text-shadow: 0 0 8px rgba(239, 68, 68, 0.6); |
| } |
|
|
| .stat-metric .metric-value.positive { |
| color: #4ade80; |
| text-shadow: 0 0 8px rgba(34, 197, 94, 0.6); |
| font-weight: 800; |
| } |
|
|
| .stat-metric .metric-value.negative { |
| color: #f87171; |
| text-shadow: 0 0 8px rgba(239, 68, 68, 0.6); |
| font-weight: 800; |
| } |
|
|
| .stat-trend { |
| display: flex; |
| align-items: center; |
| gap: 6px; |
| font-size: 0.8125rem; |
| color: var(--text-faint); |
| font-family: 'Manrope', sans-serif; |
| font-weight: 500; |
| margin-top: auto; |
| letter-spacing: 0.02em; |
| } |
|
|
| .grid-two { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); |
| gap: 20px; |
| } |
|
|
| .grid-three { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); |
| gap: 18px; |
| } |
|
|
| .grid-four { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); |
| gap: 18px; |
| } |
|
|
| .table-wrapper { |
| overflow: auto; |
| } |
|
|
| table { |
| width: 100%; |
| border-collapse: separate; |
| border-spacing: 0; |
| } |
|
|
| th, td { |
| text-align: left; |
| padding: 12px 14px; |
| font-size: 0.8125rem; |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| } |
|
|
| th { |
| font-size: 0.7rem; |
| font-weight: 700; |
| letter-spacing: 0.06em; |
| color: var(--text-muted); |
| text-transform: uppercase; |
| border-bottom: 2px solid rgba(255, 255, 255, 0.1); |
| background: rgba(255, 255, 255, 0.03); |
| position: sticky; |
| top: 0; |
| z-index: 10; |
| white-space: nowrap; |
| } |
|
|
| th:first-child { |
| border-top-left-radius: 12px; |
| padding-left: 16px; |
| } |
|
|
| th:last-child { |
| border-top-right-radius: 12px; |
| padding-right: 16px; |
| } |
|
|
| td { |
| font-weight: 500; |
| color: var(--text-primary); |
| border-bottom: 1px solid rgba(255, 255, 255, 0.05); |
| vertical-align: middle; |
| } |
|
|
| td:first-child { |
| padding-left: 16px; |
| font-weight: 600; |
| color: var(--text-muted); |
| font-size: 0.75rem; |
| } |
|
|
| td:last-child { |
| padding-right: 16px; |
| } |
|
|
| tr { |
| transition: all 0.2s ease; |
| } |
|
|
| tbody tr { |
| border-left: 2px solid transparent; |
| transition: all 0.2s ease; |
| } |
|
|
| tbody tr:hover { |
| background: rgba(255, 255, 255, 0.05); |
| border-left-color: rgba(143, 136, 255, 0.4); |
| transform: translateX(2px); |
| } |
|
|
| tbody tr:last-child td:first-child { |
| border-bottom-left-radius: 12px; |
| } |
|
|
| tbody tr:last-child td:last-child { |
| border-bottom-right-radius: 12px; |
| } |
|
|
| tbody tr:last-child td { |
| border-bottom: none; |
| } |
|
|
| td.text-success, |
| td.text-danger { |
| display: flex; |
| align-items: center; |
| gap: 6px; |
| font-weight: 600; |
| font-size: 0.8125rem; |
| } |
|
|
| td.text-success { |
| color: #22c55e; |
| } |
|
|
| td.text-danger { |
| color: #ef4444; |
| } |
|
|
| .table-change-icon { |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| width: 16px; |
| height: 16px; |
| flex-shrink: 0; |
| opacity: 0.9; |
| } |
|
|
| .table-change-icon.positive { |
| color: #22c55e; |
| } |
|
|
| .table-change-icon.negative { |
| color: #ef4444; |
| } |
|
|
| |
| .chip { |
| display: inline-flex; |
| align-items: center; |
| padding: 6px 12px; |
| background: var(--glass-bg-light); |
| border: 1px solid var(--glass-border); |
| border-radius: 6px; |
| font-size: 0.75rem; |
| font-weight: 600; |
| color: var(--primary-light); |
| font-family: 'Manrope', sans-serif; |
| letter-spacing: 0.02em; |
| text-transform: uppercase; |
| } |
|
|
| .badge { |
| padding: 4px 10px; |
| border-radius: 999px; |
| font-size: 0.75rem; |
| letter-spacing: 0.05em; |
| text-transform: uppercase; |
| } |
|
|
| .badge-success { background: rgba(52, 211, 153, 0.2); color: var(--success-light); border: 1px solid var(--success); } |
| .badge-danger { background: rgba(248, 113, 113, 0.2); color: var(--danger-light); border: 1px solid var(--danger); } |
| .badge-cyan { background: rgba(34, 211, 238, 0.2); color: var(--secondary-light); border: 1px solid var(--secondary); } |
| .badge-neutral { background: var(--glass-bg-light); color: var(--text-muted); border: 1px solid var(--glass-border); } |
| .text-muted { color: var(--text-muted); } |
| .text-success { color: var(--success); } |
| .text-danger { color: var(--danger); } |
|
|
| .ai-result { |
| margin-top: 20px; |
| padding: 24px; |
| border-radius: 20px; |
| border: 1px solid var(--glass-border); |
| background: var(--glass-bg); |
| backdrop-filter: blur(20px); |
| box-shadow: var(--shadow-soft); |
| } |
|
|
| .action-badge { |
| display: inline-flex; |
| padding: 6px 14px; |
| border-radius: 999px; |
| letter-spacing: 0.08em; |
| font-weight: 600; |
| margin-bottom: 10px; |
| } |
|
|
| .action-buy { background: rgba(52, 211, 153, 0.2); color: var(--success-light); border: 1px solid var(--success); } |
| .action-sell { background: rgba(248, 113, 113, 0.2); color: var(--danger-light); border: 1px solid var(--danger); } |
| .action-hold { background: rgba(96, 165, 250, 0.2); color: var(--info-light); border: 1px solid var(--info); } |
|
|
| .ai-insights ul { |
| padding-left: 20px; |
| } |
|
|
| .chip-row { |
| display: flex; |
| gap: 8px; |
| flex-wrap: wrap; |
| margin: 12px 0; |
| } |
|
|
| .news-item { |
| padding: 12px 0; |
| border-bottom: 1px solid var(--glass-border); |
| } |
|
|
| .ai-block { |
| padding: 14px; |
| border-radius: 12px; |
| border: 1px dashed var(--glass-border); |
| margin-top: 12px; |
| } |
|
|
| .controls-bar { |
| display: flex; |
| flex-wrap: wrap; |
| gap: 12px; |
| margin-bottom: 16px; |
| } |
|
|
| .input-chip { |
| border: 1px solid var(--glass-border); |
| background: rgba(255, 255, 255, 0.05); |
| border-radius: 999px; |
| padding: 8px 14px; |
| color: var(--text-muted); |
| display: inline-flex; |
| align-items: center; |
| gap: 10px; |
| font-family: 'Inter', sans-serif; |
| font-size: 0.875rem; |
| } |
|
|
| .search-bar { |
| display: flex; |
| flex-wrap: wrap; |
| gap: 12px; |
| align-items: center; |
| margin-bottom: 20px; |
| padding: 16px; |
| background: var(--glass-bg); |
| border: 1px solid var(--glass-border); |
| border-radius: 16px; |
| backdrop-filter: blur(10px); |
| } |
|
|
| .button-group { |
| display: flex; |
| gap: 8px; |
| flex-wrap: wrap; |
| } |
|
|
| input[type='text'], select, textarea { |
| width: 100%; |
| background: rgba(255, 255, 255, 0.05); |
| border: 1px solid var(--glass-border); |
| border-radius: 12px; |
| padding: 12px 16px; |
| color: var(--text-primary); |
| font-family: 'Inter', sans-serif; |
| font-size: 0.9375rem; |
| transition: all 0.2s ease; |
| } |
|
|
| input[type='text']:focus, select:focus, textarea:focus { |
| outline: none; |
| border-color: var(--primary); |
| background: rgba(255, 255, 255, 0.08); |
| box-shadow: 0 0 0 3px rgba(143, 136, 255, 0.2); |
| } |
|
|
| textarea { |
| min-height: 100px; |
| } |
|
|
| button.primary { |
| background: linear-gradient(120deg, var(--primary), var(--secondary)); |
| border: none; |
| border-radius: 10px; |
| color: #fff; |
| padding: 10px 14px; |
| font-weight: 500; |
| font-family: 'Manrope', sans-serif; |
| font-size: 0.875rem; |
| cursor: pointer; |
| transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); |
| box-shadow: |
| inset 0 1px 2px rgba(255, 255, 255, 0.1), |
| 0 2px 8px rgba(143, 136, 255, 0.2); |
| position: relative; |
| overflow: visible; |
| display: flex; |
| align-items: center; |
| gap: 10px; |
| } |
|
|
| button.primary::before { |
| content: ''; |
| position: absolute; |
| top: 0; |
| left: 0; |
| right: 0; |
| height: 50%; |
| background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent); |
| border-radius: 12px 12px 0 0; |
| pointer-events: none; |
| } |
|
|
| button.primary:hover { |
| background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #7c3aed 100%); |
| box-shadow: |
| 0 6px 20px rgba(59, 130, 246, 0.5), |
| inset 0 1px 0 rgba(255, 255, 255, 0.4), |
| inset 0 -1px 0 rgba(0, 0, 0, 0.15); |
| } |
|
|
| button.primary:hover::before { |
| height: 50%; |
| opacity: 1; |
| } |
|
|
| button.primary:active { |
| box-shadow: |
| 0 2px 8px rgba(59, 130, 246, 0.4), |
| inset 0 2px 4px rgba(0, 0, 0, 0.2); |
| } |
|
|
| button.secondary { |
| background: rgba(255, 255, 255, 0.95); |
| border: 2px solid #3b82f6; |
| border-radius: 12px; |
| color: #3b82f6; |
| padding: 14px 28px; |
| font-weight: 700; |
| font-family: 'Manrope', sans-serif; |
| font-size: 0.875rem; |
| cursor: pointer; |
| transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); |
| position: relative; |
| overflow: hidden; |
| display: flex; |
| align-items: center; |
| gap: 10px; |
| box-shadow: |
| 0 2px 8px rgba(59, 130, 246, 0.2), |
| inset 0 1px 0 rgba(255, 255, 255, 0.8); |
| } |
|
|
| button.secondary::before { |
| content: ''; |
| position: absolute; |
| top: 0; |
| left: 0; |
| right: 0; |
| height: 50%; |
| background: linear-gradient(180deg, rgba(59, 130, 246, 0.1), transparent); |
| border-radius: 12px 12px 0 0; |
| pointer-events: none; |
| } |
|
|
| button.secondary::before { |
| content: ''; |
| position: absolute; |
| left: 0; |
| top: 50%; |
| transform: translateY(-50%); |
| width: 2px; |
| height: 0; |
| background: var(--primary); |
| border-radius: 0 2px 2px 0; |
| transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1); |
| opacity: 0; |
| } |
|
|
| button.secondary::after { |
| content: ''; |
| position: absolute; |
| inset: 0; |
| background: rgba(143, 136, 255, 0.05); |
| border-radius: 10px; |
| opacity: 0; |
| transition: opacity 0.25s ease; |
| z-index: -1; |
| } |
|
|
| button.secondary:hover { |
| background: #3b82f6; |
| color: #ffffff; |
| box-shadow: |
| 0 4px 16px rgba(59, 130, 246, 0.4), |
| inset 0 1px 0 rgba(255, 255, 255, 0.3); |
| } |
|
|
| button.secondary:hover::before { |
| height: 50%; |
| opacity: 1; |
| } |
|
|
| button.secondary:hover::after { |
| opacity: 1; |
| } |
|
|
| button.secondary.active { |
| background: rgba(143, 136, 255, 0.12); |
| border-color: rgba(143, 136, 255, 0.2); |
| color: var(--text-primary); |
| font-weight: 600; |
| box-shadow: |
| inset 0 1px 2px rgba(255, 255, 255, 0.1), |
| 0 2px 8px rgba(143, 136, 255, 0.2); |
| } |
|
|
| button.secondary.active::before { |
| height: 60%; |
| opacity: 1; |
| box-shadow: 0 0 8px rgba(143, 136, 255, 0.5); |
| } |
|
|
| button.ghost { |
| background: rgba(255, 255, 255, 0.9); |
| border: 1px solid rgba(0, 0, 0, 0.1); |
| border-radius: 10px; |
| padding: 10px 16px; |
| color: #475569; |
| font-weight: 600; |
| font-family: 'Manrope', sans-serif; |
| font-size: 0.875rem; |
| cursor: pointer; |
| transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); |
| box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); |
| position: relative; |
| overflow: visible; |
| display: flex; |
| align-items: center; |
| gap: 10px; |
| } |
|
|
| button.ghost::before { |
| content: ''; |
| position: absolute; |
| left: 0; |
| top: 50%; |
| transform: translateY(-50%); |
| width: 2px; |
| height: 0; |
| background: var(--primary); |
| border-radius: 0 2px 2px 0; |
| transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1); |
| opacity: 0; |
| } |
|
|
| button.ghost::after { |
| content: ''; |
| position: absolute; |
| inset: 0; |
| background: rgba(143, 136, 255, 0.05); |
| border-radius: 10px; |
| opacity: 0; |
| transition: opacity 0.25s ease; |
| z-index: -1; |
| } |
|
|
| button.ghost:hover { |
| background: rgba(255, 255, 255, 1); |
| border-color: rgba(59, 130, 246, 0.3); |
| color: #3b82f6; |
| box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); |
| } |
|
|
| button.ghost:hover::before { |
| height: 50%; |
| opacity: 1; |
| } |
|
|
| button.ghost:hover::after { |
| opacity: 1; |
| } |
|
|
| button.ghost.active { |
| background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(99, 102, 241, 0.12)); |
| border-color: rgba(59, 130, 246, 0.4); |
| color: #3b82f6; |
| box-shadow: |
| inset 0 1px 2px rgba(255, 255, 255, 0.3), |
| 0 2px 8px rgba(59, 130, 246, 0.3); |
| } |
|
|
| button.ghost.active::before { |
| height: 60%; |
| opacity: 1; |
| box-shadow: 0 0 8px rgba(143, 136, 255, 0.5); |
| } |
|
|
| .skeleton { |
| position: relative; |
| overflow: hidden; |
| background: rgba(255, 255, 255, 0.05); |
| border-radius: 12px; |
| } |
|
|
| .skeleton-block { |
| display: inline-block; |
| width: 100%; |
| height: 12px; |
| border-radius: 999px; |
| background: rgba(255, 255, 255, 0.08); |
| } |
|
|
| .skeleton::after { |
| content: ''; |
| position: absolute; |
| inset: 0; |
| transform: translateX(-100%); |
| background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent); |
| animation: shimmer 1.5s infinite; |
| } |
|
|
| .drawer { |
| position: fixed; |
| top: 0; |
| right: 0; |
| height: 100vh; |
| width: min(420px, 90vw); |
| background: rgba(5, 7, 12, 0.92); |
| border-left: 1px solid var(--glass-border); |
| transform: translateX(100%); |
| transition: transform 0.4s ease; |
| padding: 32px; |
| overflow-y: auto; |
| z-index: 40; |
| } |
|
|
| .drawer.active { |
| transform: translateX(0); |
| } |
|
|
| .modal-backdrop { |
| position: fixed; |
| inset: 0; |
| background: rgba(2, 6, 23, 0.75); |
| backdrop-filter: blur(8px); |
| display: none; |
| align-items: center; |
| justify-content: center; |
| z-index: 10000; |
| animation: fadeIn 0.3s ease; |
| } |
|
|
| @keyframes fadeIn { |
| from { |
| opacity: 0; |
| } |
| to { |
| opacity: 1; |
| } |
| } |
|
|
| .modal-backdrop.active { |
| display: flex; |
| } |
|
|
| .modal { |
| width: min(640px, 90vw); |
| background: var(--glass-bg); |
| border-radius: 28px; |
| padding: 28px; |
| border: 1px solid var(--glass-border); |
| backdrop-filter: blur(20px); |
| } |
|
|
| .inline-message { |
| border-radius: 16px; |
| padding: 16px 18px; |
| border: 1px solid var(--glass-border); |
| } |
|
|
| .inline-error { border-color: rgba(239, 68, 68, 0.4); background: rgba(239, 68, 68, 0.08); } |
| .inline-warn { border-color: rgba(250, 204, 21, 0.4); background: rgba(250, 204, 21, 0.1); } |
| .inline-info { border-color: rgba(56, 189, 248, 0.4); background: rgba(56, 189, 248, 0.1); } |
|
|
| .log-table { |
| font-family: 'JetBrains Mono', 'Space Grotesk', monospace; |
| font-size: 0.8rem; |
| } |
|
|
| .chip { |
| padding: 6px 12px; |
| border-radius: 999px; |
| background: var(--glass-bg-light); |
| border: 1px solid var(--glass-border); |
| color: var(--text-secondary); |
| font-size: 0.75rem; |
| font-weight: 500; |
| } |
|
|
| .backend-info-grid { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); |
| gap: 16px; |
| } |
|
|
| .backend-info-item { |
| display: flex; |
| flex-direction: column; |
| gap: 8px; |
| padding: 16px; |
| background: rgba(255, 255, 255, 0.95); |
| border: 1px solid rgba(0, 0, 0, 0.08); |
| border-radius: 12px; |
| box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); |
| transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); |
| } |
|
|
| .backend-info-item:hover { |
| background: rgba(255, 255, 255, 1); |
| border-color: rgba(59, 130, 246, 0.3); |
| box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); |
| } |
|
|
| .info-label { |
| font-size: 0.75rem; |
| font-weight: 700; |
| color: #64748b; |
| text-transform: uppercase; |
| letter-spacing: 0.08em; |
| } |
|
|
| .info-value { |
| font-size: 1.125rem; |
| font-weight: 700; |
| color: #0f172a; |
| font-family: 'Manrope', sans-serif; |
| } |
|
|
| .fear-greed-card { |
| position: relative; |
| overflow: hidden; |
| } |
|
|
| .fear-greed-card::before { |
| content: ''; |
| position: absolute; |
| top: 0; |
| left: 0; |
| right: 0; |
| height: 3px; |
| background: linear-gradient(90deg, #EF4444 0%, #F97316 25%, #3B82F6 50%, #8B5CF6 75%, #6366F1 100%); |
| opacity: 0.6; |
| } |
|
|
| .fear-greed-value { |
| font-size: 2.5rem !important; |
| font-weight: 800 !important; |
| line-height: 1; |
| } |
|
|
| .fear-greed-classification { |
| font-size: 0.875rem; |
| font-weight: 600; |
| margin-top: 8px; |
| text-transform: uppercase; |
| letter-spacing: 0.05em; |
| } |
|
|
| .fear-greed-gauge { |
| margin-top: 16px; |
| } |
|
|
| .gauge-bar { |
| background: linear-gradient(90deg, #EF4444 0%, #F97316 25%, #3B82F6 50%, #8B5CF6 75%, #6366F1 100%); |
| height: 8px; |
| border-radius: 4px; |
| position: relative; |
| overflow: visible; |
| } |
|
|
| .gauge-indicator { |
| position: absolute; |
| top: 50%; |
| transform: translate(-50%, -50%); |
| width: 16px; |
| height: 16px; |
| border: 2px solid #fff; |
| border-radius: 50%; |
| box-shadow: 0 0 8px currentColor; |
| transition: left 0.3s ease; |
| } |
|
|
| .gauge-labels { |
| display: flex; |
| justify-content: space-between; |
| margin-top: 8px; |
| font-size: 0.75rem; |
| color: var(--text-muted); |
| } |
|
|
| .toggle { |
| position: relative; |
| width: 44px; |
| height: 24px; |
| border-radius: 999px; |
| background: rgba(255, 255, 255, 0.2); |
| cursor: pointer; |
| } |
|
|
| .toggle input { |
| position: absolute; |
| opacity: 0; |
| } |
|
|
| .toggle span { |
| position: absolute; |
| top: 3px; |
| left: 4px; |
| width: 18px; |
| height: 18px; |
| border-radius: 50%; |
| background: #fff; |
| transition: transform 0.3s ease; |
| } |
|
|
| .toggle input:checked + span { |
| transform: translateX(18px); |
| background: var(--secondary); |
| } |
|
|
| .flash { |
| animation: flash 0.6s ease; |
| } |
|
|
| @keyframes flash { |
| 0% { background: rgba(34, 197, 94, 0.2); } |
| 100% { background: transparent; } |
| } |
|
|
| .table-container { |
| overflow-x: auto; |
| border-radius: 16px; |
| background: rgba(255, 255, 255, 0.02); |
| border: 1px solid var(--glass-border); |
| } |
|
|
| .chip { |
| display: inline-flex; |
| align-items: center; |
| padding: 6px 12px; |
| border-radius: 999px; |
| background: var(--glass-bg-light); |
| border: 1px solid var(--glass-border); |
| color: var(--text-secondary); |
| font-size: 0.8125rem; |
| font-weight: 500; |
| font-family: 'Inter', sans-serif; |
| transition: all 0.2s ease; |
| } |
|
|
| .chip:hover { |
| background: var(--glass-bg); |
| border-color: var(--glass-border-strong); |
| color: var(--text-primary); |
| } |
|
|
| |
| .sentiment-modern { |
| display: flex; |
| flex-direction: column; |
| gap: 1.75rem; |
| } |
|
|
| .sentiment-header { |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| margin-bottom: 0.75rem; |
| padding-bottom: 1rem; |
| border-bottom: 2px solid rgba(255, 255, 255, 0.1); |
| } |
|
|
| .sentiment-header h4 { |
| margin: 0; |
| font-size: 1.25rem; |
| font-weight: 700; |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| letter-spacing: -0.02em; |
| background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| background-clip: text; |
| } |
|
|
| .sentiment-badge { |
| display: inline-flex; |
| align-items: center; |
| gap: 0.5rem; |
| padding: 6px 14px; |
| border-radius: 999px; |
| background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow)); |
| border: 1px solid var(--primary); |
| font-size: 0.75rem; |
| font-weight: 700; |
| text-transform: uppercase; |
| letter-spacing: 0.1em; |
| color: var(--primary-light); |
| box-shadow: 0 4px 12px var(--primary-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2); |
| font-family: 'Manrope', sans-serif; |
| } |
|
|
| .sentiment-cards { |
| display: flex; |
| flex-direction: column; |
| gap: 1.25rem; |
| } |
|
|
| .sentiment-item { |
| display: flex; |
| flex-direction: column; |
| gap: 0.75rem; |
| padding: 1.25rem; |
| background: var(--glass-bg); |
| border-radius: 16px; |
| border: 1px solid var(--glass-border); |
| transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); |
| position: relative; |
| overflow: hidden; |
| box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1); |
| backdrop-filter: blur(10px); |
| } |
|
|
| .sentiment-item::before { |
| content: ''; |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 4px; |
| height: 100%; |
| background: currentColor; |
| opacity: 0.6; |
| transform: scaleY(0); |
| transform-origin: bottom; |
| transition: transform 0.3s ease; |
| } |
|
|
| .sentiment-item:hover { |
| background: var(--glass-bg-strong); |
| border-color: var(--glass-border-strong); |
| transform: translateX(6px) translateY(-2px); |
| box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15), var(--shadow-glow-primary); |
| } |
|
|
| .sentiment-item:hover::before { |
| transform: scaleY(1); |
| } |
|
|
| .sentiment-item-header { |
| display: flex; |
| align-items: center; |
| gap: 0.75rem; |
| } |
|
|
| .sentiment-icon { |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| width: 40px; |
| height: 40px; |
| border-radius: 12px; |
| flex-shrink: 0; |
| transition: all 0.3s ease; |
| } |
|
|
| .sentiment-item:hover .sentiment-icon { |
| transform: scale(1.15) rotate(5deg); |
| } |
|
|
| .sentiment-item.bullish { |
| color: #22c55e; |
| } |
|
|
| .sentiment-item.bullish .sentiment-icon { |
| background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(16, 185, 129, 0.2)); |
| color: #22c55e; |
| border: 1px solid rgba(34, 197, 94, 0.3); |
| box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1); |
| } |
|
|
| .sentiment-item.neutral { |
| color: #38bdf8; |
| } |
|
|
| .sentiment-item.neutral .sentiment-icon { |
| background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(14, 165, 233, 0.2)); |
| color: #38bdf8; |
| border: 1px solid rgba(56, 189, 248, 0.3); |
| box-shadow: 0 4px 12px rgba(56, 189, 248, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1); |
| } |
|
|
| .sentiment-item.bearish { |
| color: #ef4444; |
| } |
|
|
| .sentiment-item.bearish .sentiment-icon { |
| background: linear-gradient(135deg, rgba(239, 68, 68, 0.25), rgba(220, 38, 38, 0.2)); |
| color: #ef4444; |
| border: 1px solid rgba(239, 68, 68, 0.3); |
| box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1); |
| } |
|
|
| .sentiment-label { |
| flex: 1; |
| font-size: 1rem; |
| font-weight: 600; |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| color: var(--text-primary); |
| letter-spacing: -0.01em; |
| } |
|
|
| .sentiment-percent { |
| font-size: 1.125rem; |
| font-weight: 800; |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| color: var(--text-primary); |
| letter-spacing: -0.02em; |
| text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); |
| } |
|
|
| .sentiment-progress { |
| width: 100%; |
| height: 10px; |
| background: rgba(0, 0, 0, 0.3); |
| border-radius: 999px; |
| overflow: hidden; |
| position: relative; |
| border: 1px solid rgba(255, 255, 255, 0.05); |
| box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3); |
| } |
|
|
| .sentiment-progress-bar { |
| height: 100%; |
| border-radius: 999px; |
| transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1); |
| box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2); |
| position: relative; |
| overflow: hidden; |
| } |
|
|
| .sentiment-progress-bar::after { |
| content: ''; |
| position: absolute; |
| top: 0; |
| left: 0; |
| right: 0; |
| bottom: 0; |
| background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); |
| animation: shimmer 2s infinite; |
| } |
|
|
| @keyframes shimmer { |
| 0% { transform: translateX(-100%); } |
| 100% { transform: translateX(100%); } |
| } |
|
|
| .sentiment-summary { |
| display: flex; |
| gap: 2rem; |
| padding: 1.25rem; |
| background: rgba(255, 255, 255, 0.03); |
| border-radius: 14px; |
| border: 1px solid rgba(255, 255, 255, 0.08); |
| box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05); |
| } |
|
|
| .sentiment-summary-item { |
| display: flex; |
| flex-direction: column; |
| gap: 0.5rem; |
| flex: 1; |
| } |
|
|
| .summary-label { |
| font-size: 0.75rem; |
| text-transform: uppercase; |
| letter-spacing: 0.1em; |
| color: var(--text-muted); |
| font-weight: 600; |
| font-family: 'Manrope', sans-serif; |
| } |
|
|
| .summary-value { |
| font-size: 1.5rem; |
| font-weight: 800; |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| letter-spacing: -0.02em; |
| text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); |
| } |
|
|
| .summary-value.bullish { |
| color: #22c55e; |
| text-shadow: 0 0 20px rgba(34, 197, 94, 0.4); |
| } |
|
|
| .summary-value.neutral { |
| color: #38bdf8; |
| text-shadow: 0 0 20px rgba(56, 189, 248, 0.4); |
| } |
|
|
| .summary-value.bearish { |
| color: #ef4444; |
| text-shadow: 0 0 20px rgba(239, 68, 68, 0.4); |
| } |
|
|
| @keyframes fadeIn { |
| from { opacity: 0; transform: translateY(8px); } |
| to { opacity: 1; transform: translateY(0); } |
| } |
|
|
| |
| .chart-controls { |
| display: flex; |
| flex-direction: column; |
| gap: 1.5rem; |
| padding: 1.5rem; |
| background: var(--glass-bg); |
| border: 1px solid var(--glass-border); |
| border-radius: 20px; |
| backdrop-filter: blur(20px); |
| } |
|
|
| .chart-label { |
| display: block; |
| font-size: 0.8125rem; |
| font-weight: 600; |
| text-transform: uppercase; |
| letter-spacing: 0.05em; |
| color: var(--text-muted); |
| margin-bottom: 0.5rem; |
| font-family: 'Manrope', sans-serif; |
| } |
|
|
| .chart-symbol-selector { |
| flex: 1; |
| } |
|
|
| .combobox-wrapper { |
| position: relative; |
| } |
|
|
| .combobox-input { |
| width: 100%; |
| padding: 12px 16px; |
| background: rgba(255, 255, 255, 0.05); |
| border: 1px solid var(--glass-border); |
| border-radius: 12px; |
| color: var(--text-primary); |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| font-size: 0.9375rem; |
| transition: all 0.2s ease; |
| } |
|
|
| .combobox-input:focus { |
| outline: none; |
| border-color: var(--primary); |
| background: rgba(255, 255, 255, 0.08); |
| box-shadow: 0 0 0 3px rgba(143, 136, 255, 0.2); |
| } |
|
|
| .combobox-dropdown { |
| position: absolute; |
| top: 100%; |
| left: 0; |
| right: 0; |
| margin-top: 0.5rem; |
| background: var(--glass-bg); |
| border: 1px solid var(--glass-border); |
| border-radius: 12px; |
| box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); |
| backdrop-filter: blur(20px); |
| z-index: 100; |
| max-height: 300px; |
| overflow-y: auto; |
| } |
|
|
| .combobox-options { |
| padding: 0.5rem; |
| } |
|
|
| .combobox-option { |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| padding: 10px 14px; |
| border-radius: 8px; |
| cursor: pointer; |
| transition: all 0.2s ease; |
| font-family: 'Manrope', sans-serif; |
| } |
|
|
| .combobox-option:hover { |
| background: rgba(255, 255, 255, 0.1); |
| transform: translateX(4px); |
| } |
|
|
| .combobox-option.disabled { |
| opacity: 0.5; |
| cursor: not-allowed; |
| } |
|
|
| .combobox-option strong { |
| font-weight: 700; |
| color: var(--text-primary); |
| font-size: 0.9375rem; |
| } |
|
|
| .combobox-option span { |
| color: var(--text-muted); |
| font-size: 0.875rem; |
| } |
|
|
| .chart-timeframe-selector { |
| display: flex; |
| flex-direction: column; |
| gap: 0.5rem; |
| } |
|
|
| .chart-actions { |
| display: flex; |
| align-items: flex-end; |
| } |
|
|
| .chart-container { |
| padding: 1.5rem; |
| background: rgba(0, 0, 0, 0.15); |
| border-radius: 16px; |
| border: 1px solid rgba(255, 255, 255, 0.05); |
| } |
|
|
| .chart-header { |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| margin-bottom: 1.5rem; |
| padding-bottom: 1rem; |
| border-bottom: 1px solid rgba(255, 255, 255, 0.1); |
| } |
|
|
| .chart-header h4 { |
| margin: 0; |
| } |
|
|
| .chart-legend { |
| display: flex; |
| gap: 2rem; |
| flex-wrap: wrap; |
| } |
|
|
| .legend-item { |
| display: flex; |
| flex-direction: column; |
| gap: 0.25rem; |
| } |
|
|
| .legend-label { |
| font-size: 0.7rem; |
| text-transform: uppercase; |
| letter-spacing: 0.08em; |
| color: rgba(226, 232, 240, 0.5); |
| font-weight: 600; |
| font-family: 'Manrope', sans-serif; |
| } |
|
|
| .legend-value { |
| font-size: 1rem; |
| font-weight: 600; |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| color: var(--text-primary); |
| display: flex; |
| align-items: center; |
| gap: 0.25rem; |
| } |
|
|
| .legend-arrow { |
| font-size: 0.875rem; |
| opacity: 0.8; |
| } |
|
|
| .legend-value.positive { |
| color: #26a69a; |
| } |
|
|
| .legend-value.negative { |
| color: #ef5350; |
| } |
|
|
| .chart-wrapper { |
| position: relative; |
| height: 450px; |
| padding: 0; |
| background: rgba(0, 0, 0, 0.2); |
| border-radius: 12px; |
| overflow: hidden; |
| } |
|
|
| .chart-wrapper canvas { |
| padding: 12px; |
| } |
|
|
| .chart-loading { |
| position: absolute; |
| inset: 0; |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| justify-content: center; |
| gap: 1rem; |
| background: rgba(0, 0, 0, 0.3); |
| border-radius: 12px; |
| z-index: 10; |
| } |
|
|
| .loading-spinner { |
| width: 40px; |
| height: 40px; |
| border: 3px solid rgba(255, 255, 255, 0.1); |
| border-top-color: var(--primary); |
| border-radius: 50%; |
| animation: spin 1s linear infinite; |
| } |
|
|
| @keyframes spin { |
| to { transform: rotate(360deg); } |
| } |
|
|
| .indicator-selector { |
| margin-top: 1rem; |
| } |
|
|
| .indicator-selector .button-group { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); |
| gap: 0.75rem; |
| } |
|
|
| .indicator-selector button { |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| gap: 0.25rem; |
| padding: 12px 16px; |
| } |
|
|
| .indicator-selector button span { |
| font-weight: 600; |
| font-size: 0.9375rem; |
| } |
|
|
| .indicator-selector button small { |
| font-size: 0.75rem; |
| opacity: 0.7; |
| font-weight: 400; |
| } |
|
|
| .analysis-output { |
| margin-top: 1.5rem; |
| padding-top: 1.5rem; |
| border-top: 1px solid rgba(255, 255, 255, 0.1); |
| } |
|
|
| .analysis-loading { |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| justify-content: center; |
| gap: 1rem; |
| padding: 2rem; |
| } |
|
|
| .analysis-results { |
| display: flex; |
| flex-direction: column; |
| gap: 1.5rem; |
| } |
|
|
| .analysis-header { |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| padding-bottom: 1rem; |
| border-bottom: 1px solid rgba(255, 255, 255, 0.1); |
| } |
|
|
| .analysis-header h5 { |
| margin: 0; |
| font-size: 1.125rem; |
| font-weight: 700; |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| } |
|
|
| .analysis-badge { |
| padding: 4px 12px; |
| border-radius: 999px; |
| font-size: 0.75rem; |
| font-weight: 700; |
| text-transform: uppercase; |
| letter-spacing: 0.05em; |
| } |
|
|
| .analysis-badge.bullish { |
| background: rgba(34, 197, 94, 0.2); |
| color: var(--success); |
| border: 1px solid rgba(34, 197, 94, 0.3); |
| } |
|
|
| .analysis-badge.bearish { |
| background: rgba(239, 68, 68, 0.2); |
| color: var(--danger); |
| border: 1px solid rgba(239, 68, 68, 0.3); |
| } |
|
|
| .analysis-badge.neutral { |
| background: rgba(56, 189, 248, 0.2); |
| color: var(--info); |
| border: 1px solid rgba(56, 189, 248, 0.3); |
| } |
|
|
| .analysis-metrics { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); |
| gap: 1rem; |
| } |
|
|
| .metric-item { |
| display: flex; |
| flex-direction: column; |
| gap: 0.5rem; |
| padding: 1rem; |
| background: rgba(255, 255, 255, 0.03); |
| border-radius: 12px; |
| border: 1px solid rgba(255, 255, 255, 0.05); |
| } |
|
|
| .metric-label { |
| font-size: 0.75rem; |
| text-transform: uppercase; |
| letter-spacing: 0.05em; |
| color: var(--text-muted); |
| font-weight: 600; |
| } |
|
|
| .metric-value { |
| font-size: 1.25rem; |
| font-weight: 700; |
| font-family: 'Manrope', 'DM Sans', sans-serif; |
| color: var(--text-primary); |
| } |
|
|
| .metric-value.positive { |
| color: var(--success); |
| } |
|
|
| .metric-value.negative { |
| color: var(--danger); |
| } |
|
|
| .analysis-summary, |
| .analysis-signals { |
| padding: 1rem; |
| background: rgba(255, 255, 255, 0.03); |
| border-radius: 12px; |
| border: 1px solid rgba(255, 255, 255, 0.05); |
| } |
|
|
| .analysis-summary h6, |
| .analysis-signals h6 { |
| margin: 0 0 0.75rem 0; |
| font-size: 0.9375rem; |
| font-weight: 600; |
| text-transform: uppercase; |
| letter-spacing: 0.05em; |
| color: var(--text-muted); |
| } |
|
|
| .analysis-summary p { |
| margin: 0; |
| line-height: 1.6; |
| color: var(--text-secondary); |
| } |
|
|
| .analysis-signals ul { |
| margin: 0; |
| padding-left: 1.5rem; |
| list-style: disc; |
| } |
|
|
| .analysis-signals li { |
| margin-bottom: 0.5rem; |
| color: var(--text-secondary); |
| line-height: 1.6; |
| } |
|
|
| .analysis-signals li strong { |
| color: var(--text-primary); |
| font-weight: 600; |
| } |
|
|
| @keyframes shimmer { |
| 100% { transform: translateX(100%); } |
| } |
|
|
| @media (max-width: 1024px) { |
| .app-shell { |
| flex-direction: column; |
| } |
|
|
| .sidebar { |
| width: 100%; |
| position: relative; |
| height: auto; |
| flex-direction: row; |
| flex-wrap: wrap; |
| } |
|
|
| .nav { |
| flex-direction: row; |
| flex-wrap: wrap; |
| } |
| } |
|
|
| body[data-layout='compact'] .glass-card { |
| padding: 14px; |
| } |
|
|
| body[data-layout='compact'] th, |
| body[data-layout='compact'] td { |
| padding: 8px; |
| } |
|
|