/* ===================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   =================================== */

:root {
  /* Colors - Aurora FinTech Theme */
  --bg-primary: #071226;
  --bg-secondary: #0d1c34;
  --bg-tertiary: #162a49;
  --bg-card: rgba(255, 255, 255, 0.06);
  --bg-card-hover: rgba(255, 255, 255, 0.1);
  
  /* Accent Colors */
  --accent-primary: #33d4ff;
  --accent-secondary: #1b8bff;
  --accent-tertiary: #25f2b5;
  --accent-gradient: linear-gradient(120deg, #33d4ff 0%, #1b8bff 45%, #25f2b5 100%);
  --accent-gradient-soft: linear-gradient(160deg, rgba(51, 212, 255, 0.3) 0%, rgba(37, 242, 181, 0.2) 100%);
  --accent-glow: 0 0 24px rgba(51, 212, 255, 0.28);
  
  /* Text Colors */
  --text-primary: #f6fbff;
  --text-secondary: #c2d2e8;
  --text-tertiary: #8ea2bf;
  --text-muted: #607694;
  
  /* Status Colors */
  --success: #25f2b5;
  --success-bg: rgba(37, 242, 181, 0.14);
  --danger: #ff5a7a;
  --danger-bg: rgba(255, 90, 122, 0.14);
  --warning: #ffc247;
  --warning-bg: rgba(255, 194, 71, 0.14);
  --info: #33d4ff;
  --info-bg: rgba(51, 212, 255, 0.14);
  
  /* Borders */
  --border-color: rgba(170, 210, 255, 0.16);
  --border-color-hover: rgba(170, 210, 255, 0.32);
  
  /* Shadows */
  --shadow-sm: 0 6px 14px rgba(1, 7, 18, 0.24);
  --shadow-md: 0 12px 28px rgba(1, 7, 18, 0.34);
  --shadow-lg: 0 18px 40px rgba(1, 7, 18, 0.42);
  --shadow-xl: 0 26px 56px rgba(1, 7, 18, 0.5);
  --shadow-glow: 0 0 36px rgba(51, 212, 255, 0.22);
  
  /* Glassmorphism */
  --glass-bg: linear-gradient(160deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.035) 100%);
  --glass-border: rgba(194, 230, 255, 0.22);
  --glass-blur: blur(14px);
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Manrope', sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 30px;
  --font-size-4xl: 36px;
  --font-size-5xl: 48px;
  
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  
  /* Transitions */
  --transition-fast: 160ms cubic-bezier(0.2, 0.9, 0.3, 1);
  --transition-base: 300ms cubic-bezier(0.2, 0.9, 0.3, 1);
  --transition-slow: 480ms cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Z-Index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  
  /* Layout */
  --sidebar-width: 260px;
  --header-height: 70px;
  --container-max-width: 1400px;
}
