/* Design System - Colors & Spacing */

:root {
  /* Primary Colors */
  --primary: #3b82f6;
  --primary-dark: #2563eb;

  /* Accent Colors */
  --accent: #8b5cf6;
  --accent-light: #a78bfa;

  /* Background */
  --bg-dark: #0a0a0a;
  --bg-card: #1a1a1a;
  --bg-hover: #2a2a2a;

  /* Text */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;

  /* Borders */
  --border: #333333;

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-line-height: 1.6;
  --font-size-base: 16px;

  /* Z-index */
  --z-nav: 100;
  --z-section: 2;
  --z-background: 1;
}

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

html {
  scroll-behavior: smooth;
}

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