:root {
  /* Colors */
  --global-bg-color: #fff;
  --global-text-color: #151515;
  --global-text-color-light: #828282;
  --global-theme-color: #4B9CD3;
  --global-hover-color: #007FAE;
  --global-navbar-bg: #13294B;
  --global-footer-bg: #13294B;
  --global-divider-color: rgba(0, 0, 0, 0.1);
  --global-code-bg-color: #e3eef7;

  --terminal-bg: #fdf6e3;
  --terminal-header-bg: #eee8d5;
  --terminal-text: #586e75;

  --dot-red: #FF605C;
  --dot-yellow: #FFBD44;
  --dot-green: #00CA4E;

  --badge-ongoing: #4B9CD3;
  --badge-completed: #28a745;
  --badge-hot: #dc3545;
  --badge-active: #fd7e14;

  /* Typography */
  --body-font: 'Roboto', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --heading-font: 'Roboto Slab', 'Roboto', serif;
  --mono-font: 'Source Code Pro', 'IBM Plex Mono', 'Courier New', monospace;

  /* Font Sizes - Desktop first, overridden on mobile */
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-xxl: 32px;
  --font-size-hero: 42px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;

  --line-height-base: 1.8;
  --line-height-tight: 1.4;
  --line-height-relaxed: 1.9;

  /* Spacing System */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;

  --container-width: 1280px;
  --container-width-wide: 1200px;
  --navbar-height: 56px;
  
  /* Border & Shadows */
  --border-radius: 12px;
  --border-radius-sm: 6px;
  --border-radius-lg: 16px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.15);

  --page-gutter: 1.5rem;

  /* Animations */
  --transition-speed: 0.3s;
  --transition-ease: ease;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile-first responsive adjustments */
@media (max-width: 768px) {
  :root {
    --font-size-base: 15px;
    --font-size-sm: 13px;
    --font-size-lg: 16px;
    --font-size-xl: 20px;
    --font-size-xxl: 28px;
    --font-size-hero: 32px;
    
    --page-gutter: 1rem;
    --border-radius: 10px;
  }
}

@media (min-width: 1024px) {
  :root {
    --page-gutter: 2rem;
  }
}

@media (max-width: 576px) {
  :root {
    --font-size-base: 14px;
    --font-size-sm: 12px;
    --font-size-lg: 15px;
    --font-size-xl: 18px;
    --font-size-xxl: 24px;
    --font-size-hero: 28px;
    
    --page-gutter: 0.75rem;
    --spacing-lg: 1.25rem;
    --spacing-xl: 1.5rem;
    --spacing-xxl: 2rem;
  }
}
