:root {
  --bg: #0b1020;
  --panel: rgba(15, 22, 45, 0.88);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #e6e9f2;
  --muted: #8a93ad;
  --accent: #7aa2ff;
  --grass-a: #1f3a2a;
  --grass-b: #1a2f24;
  --path: #c9b893;
}

* { box-sizing: border-box; }

/* Honor the HTML `hidden` attribute even when an element has an explicit `display` value. */
[hidden] { display: none !important; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
}

/* Join overlay */
.overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(1200px 600px at 50% 30%, rgba(122, 162, 255, 0.18), transparent 60%),
    linear-gradient(180deg, #0a0f1f, #060a17);
  z-index: 10;
}

.card {
  width: min(440px, 92vw);
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.card h1 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: 0.5px;
}

.tagline {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.hint {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--muted);
}

#join-form {
  display: flex;
  gap: 8px;
}

#join-form input {
  flex: 1;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  font-size: 15px;
  outline: none;
}

#join-form input:focus { border-color: var(--accent); }

#join-form button {
  padding: 12px 18px;
  background: var(--accent);
  color: #0a0f1f;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

#join-form button:hover { filter: brightness(1.05); }

.footnote {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--muted);
}

kbd {
  background: rgba(255,255,255,0.08);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
}

/* World */
#world {
  position: fixed;
  inset: 0;
}

#canvas {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
}

/* HUD */
#hud {
  position: fixed;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  z-index: 5;
  pointer-events: none;
}

#hud {
  pointer-events: auto;
}

#hud span,
#hud button {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  line-height: 1;
}

#hud .status-connecting { color: #f5c84c; }
#hud .status-on,
#hud .status-online { color: #6ee7a7; }
#hud .status-off,
#hud .status-offline { color: #ff7d7d; }

#hud button {
  cursor: pointer;
  color: var(--text);
}

#hud button:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
#hud button:disabled { opacity: 0.55; cursor: default; }
#hud button.on { color: #ff9ea7; border-color: rgba(255,158,167,0.45); }

#audio {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/* ---------- Sign-in card additions ---------- */

.topic-pill {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 14px;
  background: rgba(122, 162, 255, 0.12);
  border: 1px solid rgba(122, 162, 255, 0.35);
  color: #c8d6ff;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.3;
  text-align: left;
  max-width: 100%;
}

#signin-form { display: flex; flex-direction: column; gap: 12px; text-align: left; }

.field { display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.field input {
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  text-transform: none;
  letter-spacing: 0;
}
.field input:focus { border-color: var(--accent); }

#color-picker { display: flex; gap: 8px; flex-wrap: wrap; }
.swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: transform 0.1s;
}
.swatch:hover { transform: scale(1.08); }
.swatch.on   { border-color: #fff; box-shadow: 0 0 0 2px var(--bg); }

#signin-submit {
  margin-top: 4px;
  padding: 12px 18px;
  background: var(--accent);
  color: #0a0f1f;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}
#signin-submit:hover:not(:disabled) { filter: brightness(1.05); }
#signin-submit:disabled { opacity: 0.6; cursor: default; }

.status { margin: 12px 0 0; font-size: 13px; min-height: 1.2em; }
.status.info { color: #c8d6ff; }
.status.ok   { color: #6ee7a7; }
.status.error { color: #ff9ea7; }

/* ---------- Topbar (Plaza) ---------- */

#topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(10,15,31,0.92), rgba(10,15,31,0.6) 80%, rgba(10,15,31,0));
  pointer-events: none;
}
#topbar > * { pointer-events: auto; }

#topic-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  max-width: 70%;
}
.topic-label { color: var(--muted); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; font-size: 11px; }
#topic-title { color: var(--text); font-weight: 500; }
.difficulty { font-size: 10px; padding: 2px 8px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.5px; }
.diff-warmup   { background: rgba(110, 231, 167, 0.15); color: #6ee7a7; }
.diff-standard { background: rgba(122, 162, 255, 0.15); color: #c8d6ff; }
.diff-hot      { background: rgba(255, 158, 167, 0.15); color: #ff9ea7; }

#topbar-right { display: flex; gap: 8px; }
.hud-pill {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
}
.hud-pill:hover { border-color: var(--accent); color: var(--accent); }

/* HUD position: nudge below topbar */
#hud { top: 56px; }

/* ---------- Profile / static page chrome ---------- */

.page {
  background: var(--bg);
  color: var(--text);
  overflow: auto;
}
.page-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}
.back-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}
.back-link:hover { color: var(--accent); }

.profile-card {
  margin-top: 16px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
}
.profile-loading { color: var(--muted); }

.profile-header { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.profile-header h1 { margin: 0 0 4px; font-size: 22px; }
.profile-meta { margin: 0; color: var(--muted); font-size: 13px; }
.avatar { width: 56px; height: 56px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.18); }

.profile-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.stat {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 14px;
}
.stat-value { font-size: 20px; font-weight: 600; color: var(--text); }
.stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

.profile-foot { color: var(--muted); font-size: 12px; margin-top: 16px; }
.profile-foot { padding-top: 16px; border-top: 1px solid var(--panel-border); }

/* ---------- Stance overlay ---------- */

.stance-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(6, 10, 23, 0.78);
  backdrop-filter: blur(6px);
  z-index: 7;
  padding: 20px;
}
.stance-card {
  width: min(540px, 100%);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.stance-eyebrow {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.stance-question {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.stance-help {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.5;
}
.stance-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.stance-btn {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  background: rgba(0,0,0,0.25);
  color: var(--text);
  transition: transform 0.05s, filter 0.1s, border-color 0.1s;
}
.stance-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.stance-btn.s-strongly_for     { border-color: rgba(110,231,167,0.7); color: #6ee7a7; }
.stance-btn.s-for              { border-color: rgba(110,231,167,0.4); color: #c4f1d8; }
.stance-btn.s-neutral          { border-color: rgba(200,214,255,0.3); color: #c8d6ff; }
.stance-btn.s-against          { border-color: rgba(255,158,167,0.4); color: #ffd2d6; }
.stance-btn.s-strongly_against { border-color: rgba(255,158,167,0.7); color: #ff9ea7; }
.stance-skip {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
}
.stance-skip:hover { color: var(--text); }

/* Stance badge in topbar */
.stance-pill {
  cursor: pointer;
  border: 1px solid var(--panel-border);
}
.stance-pill.s-strongly_for     { color: #6ee7a7; border-color: rgba(110,231,167,0.5); }
.stance-pill.s-for              { color: #c4f1d8; }
.stance-pill.s-neutral          { color: #c8d6ff; }
.stance-pill.s-against          { color: #ffd2d6; }
.stance-pill.s-strongly_against { color: #ff9ea7; border-color: rgba(255,158,167,0.5); }

/* Admin pill */
#admin-link { color: #f5c84c; border-color: rgba(245,200,76,0.4); }
#admin-link:hover { color: #ffd97a; }

/* ---------- Admin page ---------- */

.admin-form { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.admin-form input,
.admin-form textarea,
.admin-form select {
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  width: 100%;
}
.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus { border-color: var(--accent); }
.admin-form textarea { min-height: 100px; resize: vertical; }
.admin-form .field span { font-size: 11px; }
.admin-form button {
  padding: 12px 18px;
  background: var(--accent);
  color: #0a0f1f;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}
.admin-form button:hover { filter: brightness(1.05); }
.admin-current {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 14px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.admin-current strong { color: var(--text); }

/* ---------- Match panel (Plaza) ---------- */

.match-panel {
  position: fixed;
  right: 14px;
  bottom: 14px;
  width: min(300px, 92vw);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  z-index: 5;
  overflow: hidden;
}
.match-panel header {
  padding: 10px 14px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid var(--panel-border);
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--muted);
}
.match-body { padding: 14px; }
.match-hint { margin: 0 0 10px; color: var(--muted); font-size: 13px; line-height: 1.4; }
.match-stats {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}
.match-stats li { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }
.match-stats li b { color: var(--text); font-weight: 600; }
.match-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 10px 14px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--panel-border);
  color: var(--text);
  border-radius: 10px;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
}
.match-btn.primary { background: var(--accent); color: #0a0f1f; font-weight: 600; border-color: transparent; }
.match-btn:hover { filter: brightness(1.05); }

/* ---------- Debate page ---------- */

.debate-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--panel-border);
  background: rgba(10,15,31,0.92);
  position: sticky;
  top: 0;
  z-index: 5;
}
.debate-topic { flex: 1; font-weight: 600; color: var(--text); }
.debate-meta { color: var(--muted); font-size: 12px; }

.debate-main { max-width: 1100px; margin: 0 auto; padding: 20px; }

.debate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 760px) {
  .debate-grid { grid-template-columns: 1fr; }
}

.side-panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.side-panel.you { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(122,162,255,0.25); }
.side-panel header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.side-tag { font-size: 10px; letter-spacing: 1px; color: var(--muted); }
.side-name { font-weight: 600; }
.side-stance { font-size: 11px; padding: 2px 8px; border-radius: 999px; background: rgba(0,0,0,0.25); border: 1px solid var(--panel-border); }
.side-stance.s-strongly_for     { color: #6ee7a7; border-color: rgba(110,231,167,0.5); }
.side-stance.s-for              { color: #c4f1d8; }
.side-stance.s-neutral          { color: #c8d6ff; }
.side-stance.s-against          { color: #ffd2d6; }
.side-stance.s-strongly_against { color: #ff9ea7; border-color: rgba(255,158,167,0.5); }

.turns { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.turn {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  padding: 10px 12px;
}
.turn header { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.turn p { margin: 0; white-space: pre-wrap; line-height: 1.55; }
.turn.skipped { opacity: 0.6; }
.turn-empty { color: var(--muted); font-size: 12px; font-style: italic; margin: 0; }

.side-status { margin-top: 10px; min-height: 18px; }
.writing-pulse { color: var(--accent); font-size: 12px; }
.writing-pulse span { animation: blink 1.4s infinite; }
.writing-pulse span:nth-child(2) { animation-delay: 0.2s; }
.writing-pulse span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%,80%,100% { opacity: 0.3; } 40% { opacity: 1; } }

/* Composer */
.composer {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 14px;
  margin-top: 14px;
}
.composer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
#composer-phase { font-weight: 600; }
.composer-clock { font-variant-numeric: tabular-nums; padding: 4px 10px; border-radius: 6px; background: rgba(0,0,0,0.35); border: 1px solid var(--panel-border); }
.composer-clock.grace { color: #f5c84c; border-color: rgba(245,200,76,0.4); }
#composer-text {
  width: 100%;
  background: rgba(0,0,0,0.35);
  color: var(--text);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  font-family: inherit;
  resize: vertical;
  outline: none;
}
#composer-text:focus { border-color: var(--accent); }
.composer-footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.composer-words { font-size: 12px; color: var(--muted); }
.composer-words.low  { color: #f5c84c; }
.composer-words.high { color: #ff9ea7; }
.composer-words.ok   { color: #6ee7a7; }
#composer-submit {
  padding: 10px 18px;
  background: var(--accent);
  color: #0a0f1f;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
#composer-submit:disabled { opacity: 0.5; cursor: default; }

.end-screen {
  margin-top: 24px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.end-screen h2 { margin: 0 0 8px; }
.end-screen p { margin: 0 0 16px; color: var(--muted); }

.judging-spinner {
  width: 32px;
  height: 32px;
  margin: 16px auto 0;
  border: 3px solid rgba(122, 162, 255, 0.18);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Scorecard */
.scorecard {
  margin-top: 24px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 24px;
}
.scorecard-header { text-align: center; margin-bottom: 20px; }
.scorecard-header h2 { margin: 0 0 6px; font-size: 24px; }
.scorecard-tagline { margin: 0; color: var(--muted); font-size: 13px; }

.scorecard-composites {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.composite-card {
  text-align: center;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 18px 14px;
}
.composite-card.winner { border-color: rgba(110,231,167,0.55); box-shadow: 0 0 0 1px rgba(110,231,167,0.18); }
.composite-card.forfeit { border-color: rgba(255,158,167,0.55); }
.composite-side  { font-size: 10px; letter-spacing: 1px; color: var(--muted); }
.composite-name  { font-weight: 600; margin-top: 4px; }
.composite-score { font-size: 38px; font-weight: 700; margin: 10px 0 6px; font-variant-numeric: tabular-nums; }
.composite-elo   { font-size: 12px; color: var(--muted); }
.composite-elo .elo-up   { color: #6ee7a7; font-weight: 600; }
.composite-elo .elo-down { color: #ff9ea7; font-weight: 600; }
.composite-elo .elo-flat { color: var(--muted); }
.composite-vs    { color: var(--muted); font-size: 14px; }

.scorecard-dims { margin-bottom: 24px; }
.scorecard-dims h3 { margin: 0 0 10px; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--muted); }
.dims-grid { display: flex; flex-direction: column; gap: 8px; }
.dim-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  align-items: center;
}
.dim-label { font-size: 13px; color: var(--text); }
.dim-bars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dim-side { display: flex; align-items: center; gap: 8px; }
.dim-side.a { flex-direction: row-reverse; }
.dim-bar {
  flex: 1;
  height: 8px;
  background: rgba(0,0,0,0.35);
  border-radius: 4px;
  overflow: hidden;
}
.dim-bar span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
}
.dim-side.a .dim-bar span { background: linear-gradient(90deg, transparent, var(--accent)); }
.dim-num { font-variant-numeric: tabular-nums; font-size: 13px; color: var(--text); width: 16px; text-align: center; }
.dims-foot { color: var(--muted); font-size: 11px; margin: 12px 0 0; }

.scorecard-feedback {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
@media (max-width: 760px) {
  .scorecard-feedback { grid-template-columns: 1fr; }
  .scorecard-composites { grid-template-columns: 1fr; }
  .dim-row { grid-template-columns: 1fr; }
}
.feedback-card {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 14px;
}
.feedback-card header { font-size: 11px; letter-spacing: 0.5px; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; }
.feedback-card p { margin: 0; line-height: 1.55; font-size: 14px; }
.scorecard-back { display: block; max-width: 240px; margin: 8px auto 0; }

/* Chat */
#chat {
  position: fixed;
  left: 12px;
  bottom: 12px;
  width: min(380px, 92vw);
  max-height: 42vh;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  overflow: hidden;
  z-index: 5;
}

#chat header {
  padding: 10px 12px;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--panel-border);
}

#chat-log {
  list-style: none;
  margin: 0;
  padding: 8px 12px;
  overflow-y: auto;
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
}

#chat-log li { margin: 4px 0; word-wrap: break-word; }

#chat-log .name { font-weight: 600; margin-right: 6px; }
#chat-log .system { color: var(--muted); font-style: italic; font-size: 12px; }

#chat-form {
  border-top: 1px solid var(--panel-border);
  background: rgba(0, 0, 0, 0.25);
}

#chat-input {
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 14px;
  outline: none;
}

#chat-input::placeholder { color: var(--muted); }
