:root {
  /* core dark fantasy palette */
  --bg: #090207;
  --panel: #2a1d31;
  --card: #3c2547;
  --border: #644f73;
  --text: #f4eaff;
  --text-muted: #c9b9cd;
  --accent: #d4af37;
  --accent-strong: #f9c874;
  --panel-highlight: rgba(212, 175, 55, 0.18);
  --box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);

  /* admin-specific extension colors */
  --tib-gold: #b3873f;
  --tib-green: #39916a;
  --tib-orange: #bc8b3f;
  --tib-red: #a84344;
}

html, body {
  background: var(--bg);
  color: var(--text);
}

button, input, select, textarea {
  font-family: inherit;
}

.chip-aye   { background: var(--tib-green); color: #9ce1b6; border-color: rgba(57,145,106,0.8); }
.chip-maybe { background: var(--tib-orange); color: #ffe3a7; border-color: rgba(188,139,63,0.8); }
.chip-nay   { background: var(--tib-red); color: #f8b4b4; border-color: rgba(168,67,68,0.85); }

.cdot.aye   { background: var(--tib-green); }
.cdot.maybe { background: var(--tib-orange); }
.cdot.nay   { background: var(--tib-red); }
.cdot.none  { background: #524745; }

.cell-score { color: var(--text-muted); }
.cell-score.met  { color: #72c69b; }
.cell-score.full { color: var(--tib-gold); }

.vote-cell.full-q { box-shadow: inset 0 0 0 1.5px rgba(179, 135, 63, 0.68); background: rgba(179, 135, 63, 0.12); }

.gs-dl-pill { background: var(--panel-highlight); border: 1px solid rgba(212,172,95,0.35); color: #e9c876; }

.gs-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  gap: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
}

#screen-group .gs-hero,
#screen-group .gs-hero > * {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.admin-norm { background: var(--panel); border: 1px solid var(--border); color: var(--text); }
