/* Tablóválasztó – közös alapok (Budapest Pictures arculat) */
:root {
  --bg: #14111C;
  --bg-2: #1D1926;
  --bg-3: #2A2436;
  --line: rgba(255, 255, 255, 0.09);
  --text: #F8F9FA;
  --text-2: rgba(248, 249, 250, 0.68);
  --text-3: rgba(248, 249, 250, 0.42);
  --turkiz: #0E9895;
  --turkiz-2: #16C2BE;
  --lila: #A169D2;
  --melylila: #53366C;
  --ok: #3DDC97;
  --warn: #F5B841;
  --err: #FF6B6B;
  --grad: linear-gradient(135deg, var(--turkiz) 0%, var(--lila) 100%);
  --radius: 14px;
  --font: 'Archivo', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -0.01em; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; padding: 0; }
a { color: var(--turkiz-2); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border-radius: 12px; font-weight: 700; font-size: 15px;
  background: var(--bg-3); color: var(--text); border: 1px solid var(--line);
  transition: transform .08s ease, background .15s ease, opacity .15s ease;
  min-height: 46px; user-select: none; -webkit-user-select: none;
}
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: .45; cursor: default; transform: none; }
.btn.primary { background: var(--grad); border-color: transparent; color: #fff; }
.btn.ghost { background: transparent; }
.btn.danger { color: var(--err); border-color: rgba(255,107,107,.35); }
.btn.small { padding: 8px 12px; min-height: 36px; font-size: 13px; border-radius: 10px; }
.input {
  width: 100%; padding: 12px 14px; border-radius: 12px; background: var(--bg-2);
  border: 1px solid var(--line); color: var(--text); outline: none; min-height: 46px;
}
.input:focus { border-color: var(--turkiz); box-shadow: 0 0 0 3px rgba(14,152,149,.25); }
.brand {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--text-2);
}
.brand i {
  width: 22px; height: 22px; border-radius: 50%; background: var(--grad); display: inline-block; flex: none;
}
.muted { color: var(--text-2); }
.tiny { font-size: 12px; color: var(--text-3); }
.card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(20px);
  background: #fff; color: #14111C; padding: 10px 16px; border-radius: 999px; font-weight: 700; font-size: 14px;
  opacity: 0; pointer-events: none; transition: all .25s ease; z-index: 100; box-shadow: 0 10px 30px rgba(0,0,0,.4); white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.err { background: var(--err); color: #fff; }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }
