| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap'); | |
| :root { | |
| /* Rovin Design System (Professional Matte) */ | |
| --bg-dark: #0A0A0A; | |
| /* Deepest Black */ | |
| --bg-card: #161617; | |
| /* Matte Dark Grey */ | |
| --bg-card-hover: #1C1C1E; | |
| /* Slightly Lighter */ | |
| --accent-primary: #FF4D00; | |
| /* Burned Orange (Matte) */ | |
| --accent-secondary: #E64600; | |
| --accent-gradient: #FF4D00; | |
| /* NO GRADIENT - Solid */ | |
| --text-primary: #F5F5F7; | |
| /* Off-white for less eye strain */ | |
| --text-secondary: #86868B; | |
| /* Apple-style grey */ | |
| --text-muted: #6E6E73; | |
| --border-color: rgba(255, 255, 255, 0.08); | |
| --border-hover: rgba(255, 77, 0, 0.3); | |
| --success: #32D74B; | |
| --warning: #FF9F0A; | |
| --error: #FF453A; | |
| --radius: 12px; | |
| /* Professional curve, not too round */ | |
| --radius-sm: 6px; | |
| --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; | |
| } | |
| body { | |
| background-color: var(--bg-dark); | |
| color: var(--text-primary); | |
| font-family: var(--font-display); | |
| -webkit-font-smoothing: antialiased; | |
| letter-spacing: -0.01em; | |
| } | |
| body { | |
| margin: 0; | |
| min-height: 100vh; | |
| } | |
| #root { | |
| min-height: 100vh; | |
| } |