/* Shared base styles for the Context Translator mockups */

:root {
  --eu-blue: #003399;
  --eu-blue-light: #4d6fb8;
  --eu-gold: #FFCC00;
  --ink: #1a1a1a;
  --ink-muted: #4a4a4a;
  --paper: #ffffff;
  --paper-muted: #f5f6fa;
  --border: #e2e4ec;
  --ok: #1d8a4a;
  --warn: #b86b00;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper-muted);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--eu-blue); }

.demo-bar {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.78);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
  z-index: 9999;
  text-decoration: none;
}
.demo-bar:hover { background: rgba(0,0,0,0.9); }