:root {
  /* Backgrounds */
  --bg-void:        #050810;
  --bg-deep:        #0a0e1a;
  --bg-panel:       rgba(15, 23, 42, 0.75);
  --bg-card:        rgba(30, 41, 59, 0.50);
  --bg-hover:       rgba(99, 102, 241, 0.12);

  /* Accents */
  --glow-cyan:      #06b6d4;
  --glow-violet:    #8b5cf6;
  --glow-emerald:   #10b981;
  --glow-amber:     #f59e0b;
  --glow-red:       #ef4444;
  --glow-blue:      #3b82f6;

  /* Item type colors */
  --type-servidor:    #06d6a0;
  --type-contenedor:  #8b5cf6;
  --type-servicio:    #f59e0b;
  --type-dispositivo: #06b6d4;
  --type-database:    #10b981;

  /* Event kind colors */
  --event-created:      #10b981;
  --event-upgraded:     #3b82f6;
  --event-combat:       #f59e0b;
  --event-broken:       #ef4444;
  --event-alive:        #06d6a0;
  --event-dead:         #dc2626;
  --event-archived:     #64748b;

  /* Text */
  --text-primary:   #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted:     #475569;
  --text-accent:    #a5b4fc;

  /* Glass */
  --glass-border:   rgba(99, 102, 241, 0.15);
  --glass-blur:     12px;

  /* Typography */
  --font-ui:   'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: 14px;
}

.mono {
  font-family: var(--font-mono);
}

.text-accent { color: var(--text-accent); }
.text-muted { color: var(--text-muted); }

/* Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(99, 102, 241, 0.5);
}
