:root {
  /* Colors */
  --color-primary: #3eafac;
  --color-primary-rgb: 62, 175, 172;
  --color-secondary: #f9a621;
  --color-text: #4e4b54;
  --color-text-light: #c3c1c4;
  --color-background: #ffffff;
  --color-background-light: #f3f7fb;
  --color-border: #e0e0e0;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  --color-info: #2196f3;
  --color-gray: #c3c1c4;

  /* Typography */
  --font-family-base: 'Poppins', sans-serif;
  --font-size-base: 16px;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-xxl: 32px;
  --font-weight-extra-light: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-base: 1.5;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;
  --spacing-xxl: 3rem;

  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-width: 1px;
  --border-width-lg: 2px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --container-max-width: 1440px;
  --header-height: 120px;
  --footer-height: 200px;
  
  /* Z-index */
  --z-index-dropdown: 100;
  --z-index-sticky: 300;
  --z-index-fixed: 1030;
  --z-index-modal: 200;
  --z-index-popup: 1050;
  --z-index-tooltip: 1060;
} 