:root {
  /* Typography - edgier fonts */
  --font-sans: 'Space Grotesk', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', 'SF Mono', monospace;

  /* Dark rebellious palette */
  --color-bg: #000000;
  --color-surface: #0d0d0d;
  --color-surface-light: #1a1a1a;
  --color-border: #262626;
  --color-border-light: #333333;

  /* Electric red - more aggressive */
  --color-primary: #ff2d2d;
  --color-primary-light: #ff5555;
  --color-primary-soft: rgba(255, 45, 45, 0.12);

  /* Acid yellow accent */
  --color-accent: #caff00;
  --color-accent-light: #d4ff33;
  --color-accent-soft: rgba(202, 255, 0, 0.12);

  /* Fire - hotter, more intense */
  --color-fire: #ff4d00;
  --color-fire-light: #ff6b2c;
  --color-fire-soft: rgba(255, 77, 0, 0.15);

  /* Text colors - higher contrast */
  --color-text: #ffffff;
  --color-text-secondary: #b3b3b3;
  --color-text-muted: #666666;

  /* Status colors - vivid */
  --color-success: #00ff88;
  --color-warning: #ffcc00;
  --color-error: #ff3333;

  /* Layout - sharper edges */
  --container-width: 1200px;
  --radius-lg: 4px;
  --radius-md: 3px;
  --radius-sm: 2px;
  --radius-xs: 1px;
  --radius-pill: 999px;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Shadows - more dramatic with color */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 60px rgba(255, 77, 0, 0.3);
  --shadow-glow-accent: 0 0 40px rgba(202, 255, 0, 0.2);

  /* Transitions */
  --transition-fast: 100ms ease;
  --transition-base: 150ms ease;
  --transition-slow: 250ms ease;
}

@media (max-width: 768px) {
  :root {
    --space-20: 56px;
    --space-24: 72px;
  }
}
