/* CSS Variables - Theme Configuration */

:root {
  /* Colors */
  --bg-dark: #1a1a1a;
  --panel-dark: #222222;
  --light-gray: #2a2a2a;
  --muted: #a0a0a0;
  --accent: #ff7700;
  --text-primary: #e6e6e6;
  --text-secondary: #b0b0b0;
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-primary: 'Space Grotesk', Roboto, system-ui, sans-serif;
  --font-secondary: Roboto, system-ui, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.3);
  --shadow-accent: 0 4px 12px rgba(255, 119, 0, 0.3);
  
  /* Z-index layers */
  --z-dropdown: 100;
  --z-modal: 500;
  --z-header: 1000;
  --z-notification: 2000;
  
  /* Container */
  --container-max-width: 1920px;
  --container-padding: 16px;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
