@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand */
  --brand: #3b82f6;
  --brand-hover: #60a5fa;
  --brand-dark: #1d4ed8;
  --brand-deep: #1e3a8a;
  --brand-glow: rgba(59, 130, 246, 0.3);

  /* Backgrounds */
  --bg: #0a0e1a;
  --bg2: #0f172a;
  --bg-card: #1e293b;
  --bg-elevated: #334155;

  /* Text */
  --text: #f8fafc;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Borders */
  --border: #334155;
  --border-subtle: rgba(255, 255, 255, 0.06);

  /* Status */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #06b6d4;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);

  /* Font */
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Z-index */
  --z-base: 0;
  --z-dropdown: 100;
  --z-sticky: 500;
  --z-modal-bg: 1000;
  --z-modal: 1001;
  --z-toast: 2000;

  /* Transitions */
  --transition-fast: all 0.15s ease;
  --transition-base: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.3s ease;
}
