@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Source+Sans+3:wght@400;500;600&display=swap");

:root {
  --ink-900: #07080a;
  --ink-800: #0c0d10;
  --ink-700: #111218;
  --ink-600: #16140f;
  --line: rgba(196, 165, 116, .16);
  --line-mid: rgba(196, 165, 116, .3);
  --line-strong: rgba(196, 165, 116, .48);
  --brass: #c4a574;
  --brass-lit: #e4c48a;
  --brass-deep: #8a6f46;
  --parchment: #e8dfd0;
  --muted: #9a9184;
  --danger: #d0484c;
  --danger-deep: #7e1216;
  --agent: #6a8caf;
  --good: #7dba6a;
  --wood-hi: #5c462d;
  --wood: #33261a;
  --wood-lo: #150f09;
  --radius: 4px;
  --radius-sm: 3px;
  --ease: cubic-bezier(.4, 0, .15, 1);
}

html, body {
  height: 100%;
  margin: 0;
  background: var(--ink-800);
  color: var(--parchment);
  font-family: "Source Sans 3", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 165, 116, .4) transparent;
}

*::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: rgba(196, 165, 116, .4);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--brass-lit);
}

*::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

h1, h2, .brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: .02em;
}

.muted { color: var(--muted); font-size: .92rem; }
.err, .banner-err { color: #f0b4b4; }
.banner-err {
  background: linear-gradient(180deg, #3f1214, #2a0c0e);
  border-bottom: 1px solid rgba(208, 72, 76, .45);
  padding: .45rem 1rem;
  font-size: .9rem;
}
.legal { color: #6e675c; font-size: .78rem; }
.eyebrow {
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: .7rem;
  color: var(--brass);
}

/* ---------- entry / lobby ---------- */

.lobby {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 12%, rgba(196, 165, 116, .16), transparent 52%),
    radial-gradient(ellipse at 50% 100%, rgba(120, 96, 60, .08), transparent 60%),
    var(--ink-800);
}
.lobby > .eyebrow { margin: 0; }
.lobby > h1 {
  margin: .35rem 0 .55rem;
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  font-weight: 600;
}
.lobby > .muted { margin: 0 auto 1.15rem; }
.lobby > .legal { margin: 1.2rem 0 0; }
.lobby .btn.gold { margin-bottom: 0; }

.lobby-card {
  width: min(28rem, 100%);
  text-align: left;
  background: linear-gradient(180deg, rgba(24, 21, 17, .92), rgba(13, 12, 11, .92));
  border: 1px solid var(--line-mid);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, .6),
    inset 0 1px 0 rgba(228, 196, 138, .1);
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.lobby-card h2 { margin: 0; font-size: 1.6rem; }
.lobby-card p { margin: 0; }
.lobby-card .field { margin-bottom: 0; }
.lobby-card .lbl { margin-bottom: 0; }
.lobby-card .lbl + .field { margin-top: -.3rem; }

/* ---------- form controls ---------- */

.lbl {
  display: block;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .3rem;
  color: var(--brass);
}
.field {
  width: 100%;
  box-sizing: border-box;
  background: #131109;
  border: 1px solid #3d3428;
  color: var(--parchment);
  padding: .55rem .7rem;
  border-radius: var(--radius-sm);
  margin-bottom: .75rem;
  font: inherit;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field::placeholder { color: #6e675c; }
.field:hover { border-color: #52462f; }
.field:focus {
  outline: none;
  background: #171408;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(196, 165, 116, .16);
}
.field.code {
  letter-spacing: .18em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
select.field option { background: var(--ink-600); color: var(--parchment); }
.row { display: flex; gap: .5rem; }
.row .field { margin-bottom: 0; }
.row > .btn { width: auto; margin-bottom: 0; flex: 0 0 auto; }
.wrap { flex-wrap: wrap; }
.phase-row { gap: .55rem; }
.phase-row .btn { width: auto; margin: 0; flex: 0 0 auto; }
.lobby-check {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  cursor: pointer;
  user-select: none;
}
.lobby-check input {
  accent-color: var(--brass);
  margin-top: .2rem;
  flex-shrink: 0;
}
.lobby-actions {
  display: flex;
  gap: .55rem;
  margin-top: .05rem;
}
.lobby-card .lobby-actions .btn {
  flex: 1;
  width: auto;
  margin-bottom: 0;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brass);
  background: transparent;
  color: var(--parchment);
  padding: .55rem .9rem;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .1s ease, box-shadow .15s ease;
}
.btn:hover:not(:disabled) {
  background: rgba(196, 165, 116, .12);
  border-color: var(--brass-lit);
}
.btn:active:not(:disabled) { transform: translateY(1px); }
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(228, 196, 138, .32);
}
.btn.gold {
  background: linear-gradient(180deg, #e0c391 0%, #c4a574 52%, #a9884f 100%);
  color: #1a140c;
  border-color: #d8bb87;
  font-weight: 600;
  width: 100%;
  margin-bottom: .75rem;
  box-shadow: 0 1px 0 rgba(255, 240, 210, .35) inset, 0 6px 14px rgba(0, 0, 0, .35);
}
.btn.gold:hover:not(:disabled) {
  background: linear-gradient(180deg, #f0d6a8 0%, #d6b782 52%, #b8965b 100%);
  border-color: #f0d6a8;
}
.btn.ghost { background: transparent; border-color: var(--line-strong); }
.btn.ghost:hover:not(:disabled) { border-color: var(--brass); }
.btn.sm { padding: .3rem .6rem; font-size: .85rem; width: auto; margin: 0; }
.btn:disabled { opacity: .38; cursor: not-allowed; box-shadow: none; }

/* ---------- app shell ---------- */

.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(196, 165, 116, .07), transparent 55%),
    var(--ink-800);
}
.topbar, .bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--line);
}
.topbar {
  background: linear-gradient(180deg, rgba(20, 18, 15, .92), rgba(12, 13, 16, .7));
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 7;
}
.topbar .brand {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--brass-lit);
  line-height: 1.1;
}
.bar {
  border-bottom: 0;
  border-top: 1px solid var(--line);
  background: rgba(9, 9, 11, .6);
}
.top-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.room-code-line { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }

.grid {
  flex: 1;
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr) 288px;
}
@media (max-width: 1100px) { .grid { grid-template-columns: 1fr; } }

/* ---------- side panels ---------- */

.panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .75rem;
  background: linear-gradient(180deg, rgba(19, 18, 15, .86), rgba(10, 10, 12, .8));
  border-right: 1px solid var(--line);
  padding: .9rem;
  overflow: auto;
  max-height: calc(100vh - 6rem);
}
.panel > .brand,
.panel > p { margin: 0; }
.panel > .brand {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brass-lit);
  letter-spacing: .05em;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--line);
}
.panel > .btn.gold { margin-bottom: 0; }
.panel > .btn:not(.gold) { align-self: flex-start; }
.panel + .stage + .panel, .grid > .panel:last-child {
  border-right: 0;
  border-left: 1px solid var(--line);
}

.card {
  margin-top: 0;
  padding: .7rem;
  border: 1px solid var(--line-mid);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .18));
}
.card.fold { padding: 0; overflow: hidden; }
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  width: 100%;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  padding: .6rem .7rem;
  transition: background .15s ease;
}
.card-head:hover { background: rgba(196, 165, 116, .08); }
.card-head:focus-visible {
  outline: 1px solid var(--brass-lit);
  outline-offset: -1px;
}
.card-head .brand {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: .06em;
  color: var(--brass-lit);
}
.card.open .card-head { border-bottom: 1px solid var(--line); }
.card-chevron {
  flex-shrink: 0;
  width: .42rem;
  height: .42rem;
  border-right: 2px solid var(--brass);
  border-bottom: 2px solid var(--brass);
  transform: rotate(-45deg);
  transition: transform .18s var(--ease);
  margin-right: .12rem;
}
.card.open .card-chevron {
  transform: rotate(45deg);
  margin-top: -.12rem;
}
.card-body {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: .65rem .7rem .75rem;
}
.card.fold:not(.open) .card-body,
.card-body[hidden] {
  display: none;
}
.card-body > p { margin: 0; }
.card-body .field,
.card-body .btn.gold { margin-bottom: 0; }
.card-body .lbl { margin-bottom: 0; }
.card-body .lbl + .field { margin-top: -.2rem; }

/* ---------- chips ---------- */

.chip {
  display: inline-flex;
  align-items: center;
  background: rgba(196, 165, 116, .12);
  border: 1px solid var(--line-strong);
  color: var(--brass-lit);
  padding: .1rem .5rem;
  border-radius: 999px;
  font-size: .74rem;
  letter-spacing: .04em;
  white-space: nowrap;
}
.chip.mole {
  background: rgba(160, 32, 36, .2);
  border-color: rgba(208, 72, 76, .6);
  color: #f0b8b8;
}
.chip.agent {
  background: rgba(106, 140, 175, .16);
  border-color: rgba(106, 140, 175, .6);
  color: #bcd4ea;
}
.chip.revoked {
  background: rgba(130, 130, 130, .12);
  border-color: #6a6a6a;
  color: #b4b4b4;
}
button.chip-role {
  font: inherit;
  font-size: .74rem;
  color: inherit;
  cursor: pointer;
  line-height: inherit;
  transition: background .15s ease, border-color .15s ease;
}
button.chip-role:hover,
button.chip-role:focus-visible {
  background: rgba(228, 196, 138, .22);
  border-color: var(--brass-lit);
}
button.chip-role.mole:hover,
button.chip-role.mole:focus-visible {
  background: rgba(208, 72, 76, .3);
  border-color: #e08080;
}
button.chip-role.agent:hover,
button.chip-role.agent:focus-visible {
  background: rgba(106, 140, 175, .3);
  border-color: #86a4c0;
}

/* ---------- dialogs ---------- */

.role-briefing {
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(30, 26, 20, .98), rgba(16, 15, 13, .98));
  color: var(--parchment);
  border-radius: var(--radius);
  padding: 0;
  max-width: min(28rem, calc(100vw - 2rem));
  width: 28rem;
  overflow: hidden;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, .7),
    inset 0 1px 0 rgba(228, 196, 138, .14);
}
.role-briefing::before {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.role-briefing[open] { animation: dialog-rise .22s var(--ease); }
.role-briefing::backdrop {
  background: rgba(3, 3, 5, .74);
  backdrop-filter: blur(3px);
}
@keyframes dialog-rise {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
  to { opacity: 1; transform: none; }
}
.role-briefing-panel {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: 1.2rem 1.3rem 1.25rem;
}
.role-briefing-panel > p { margin: 0; }
.role-briefing-panel .field { margin-bottom: 0; }
.role-briefing-panel .lbl { margin-bottom: 0; }
.role-briefing-panel .lbl + .field { margin-top: -.2rem; }
.role-briefing-panel .btn.gold { margin-bottom: 0; }
.role-briefing-panel .device-code-display { margin: .2rem 0; }
.role-briefing-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
}
.role-briefing-head h2 {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--brass-lit);
}
.role-briefing-close {
  flex-shrink: 0;
  min-width: 1.85rem;
  line-height: 1;
  font-size: 1.15rem;
}
.role-briefing-actions { margin-top: .35rem; gap: .55rem; }
.role-briefing-actions .btn { flex: 1 1 auto; }

/* role dialog, tinted by alignment */
.role-briefing.align-mole::before {
  background: linear-gradient(90deg, transparent, var(--danger), transparent);
}
.role-briefing.align-mole .role-briefing-head h2 { color: #f0b8b8; }
.role-briefing.align-agent::before {
  background: linear-gradient(90deg, transparent, var(--agent), transparent);
}
.role-briefing.align-agent .role-briefing-head h2 { color: #cfe0f0; }

/* night wake dialog — cold, quiet room */
.role-briefing.night-wake {
  background: linear-gradient(180deg, rgba(16, 21, 30, .98), rgba(9, 11, 16, .98));
  border-color: rgba(122, 156, 190, .4);
}
.role-briefing.night-wake::before {
  background: linear-gradient(90deg, transparent, #7a9cbe, transparent);
}
.role-briefing.night-wake .role-briefing-head h2 { color: #cfe0f0; }
.role-briefing.night-wake .lbl { color: #9dbad4; }
.role-briefing.night-wake .field:focus {
  border-color: #7a9cbe;
  box-shadow: 0 0 0 3px rgba(122, 156, 190, .18);
}
.role-briefing.night-wake::backdrop {
  background: rgba(2, 5, 10, .82);
  backdrop-filter: blur(4px);
}

/* phase change confirm */
.role-briefing.phase-shift .role-briefing-head h2 { letter-spacing: .01em; }
.role-briefing.phase-shift.to-night {
  background: linear-gradient(180deg, rgba(16, 20, 28, .98), rgba(9, 11, 15, .98));
  border-color: rgba(122, 156, 190, .38);
}
.role-briefing.phase-shift.to-night::before {
  background: linear-gradient(90deg, transparent, #7a9cbe, transparent);
}
.role-briefing.phase-shift.to-night .role-briefing-head h2 { color: #cfe0f0; }
.role-briefing.phase-shift.to-day::before {
  background: linear-gradient(90deg, transparent, var(--brass-lit), transparent);
}

/* ---------- the board ---------- */

.stage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.board {
  position: relative;
  width: min(760px, 100%);
  aspect-ratio: 1;
  container-type: size;
}

.table-ring {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 26%, var(--wood-hi) 0%, var(--wood) 46%, var(--wood-lo) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(228, 196, 138, .18),
    inset 0 6px 22px rgba(255, 220, 170, .06),
    inset 0 -10px 40px rgba(0, 0, 0, .7),
    0 30px 70px rgba(0, 0, 0, .6),
    0 0 70px rgba(196, 165, 116, .07);
  transition: filter .6s ease, box-shadow .6s ease;
}
.table-inlay {
  position: absolute;
  inset: 19.5%;
  border-radius: 50%;
  border: 1px solid rgba(228, 196, 138, .26);
  box-shadow:
    0 0 .8rem rgba(196, 165, 116, .14),
    inset 0 0 1.2rem rgba(0, 0, 0, .5);
  pointer-events: none;
  transition: opacity .6s ease, border-color .6s ease;
}
.table-felt {
  position: absolute;
  inset: 21%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 30%, #2a2419 0%, #16120c 58%, #0b0805 100%);
  box-shadow: inset 0 0 4rem rgba(0, 0, 0, .8);
  pointer-events: none;
  transition: filter .6s ease;
}

/* day / night ambience */
.board.is-day .table-ring {
  box-shadow:
    inset 0 0 0 1px rgba(228, 196, 138, .22),
    inset 0 6px 26px rgba(255, 224, 175, .09),
    inset 0 -10px 40px rgba(0, 0, 0, .66),
    0 30px 70px rgba(0, 0, 0, .58),
    0 0 90px rgba(196, 165, 116, .1);
}
.board.is-night .table-ring {
  filter: brightness(.66) saturate(.6);
}
.board.is-night .table-felt { filter: brightness(.7) saturate(.55); }
.board.is-night .table-inlay { border-color: rgba(150, 178, 205, .22); }

.night-veil {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  background:
    radial-gradient(ellipse at 50% 6%, rgba(150, 185, 220, .12) 0%, transparent 46%),
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(6, 10, 18, .5) 100%);
  transition: opacity .8s ease;
}
.board.is-night .night-veil { opacity: 1; }

.spotlight-veil {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(8, 6, 4, .06) 0%, rgba(4, 3, 2, .42) 52%, rgba(0, 0, 0, .74) 100%);
  transition: opacity .5s ease;
}
.board.spotlight-mode .spotlight-veil { opacity: 1; }
.board.spotlight-mode.awaiting-nomination .spotlight-veil { opacity: .45; }
.board.spotlight-mode .table-ring {
  filter: brightness(.5) saturate(.72);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, .82), 0 0 40px rgba(0, 0, 0, .35);
}
.board.spotlight-mode.awaiting-nomination .table-ring { filter: brightness(.72) saturate(.85); }
.board.spotlight-mode .table-center { z-index: 6; }

.table-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 11rem;
  z-index: 1;
}
.table-center .brand {
  font-size: 1.35rem;
  color: var(--brass-lit);
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .9;
}
.table-center .eyebrow { margin-top: .1rem; }
.table-center .muted { font-size: .82rem; }
.board.is-night .table-center .brand { color: #b9cee0; }
.board.is-night .table-center .eyebrow { color: #9dbad4; }

.accuse-wait { margin: .55rem 0 0; max-width: 10rem; }
.board.spotlight-mode .accuse-wait { color: var(--brass-lit); }

.accuse-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 5.6rem;
  height: 5.6rem;
  margin: .6rem auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  z-index: 3;
}
.accuse-btn:disabled { cursor: not-allowed; opacity: .45; }
.accuse-well {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #2e1a15, #090605 74%);
  box-shadow:
    inset 0 .45rem .8rem rgba(0, 0, 0, .72),
    0 0 0 .18rem rgba(92, 28, 22, .6),
    0 0 0 .3rem rgba(228, 196, 138, .12);
  pointer-events: none;
}
.accuse-stem {
  position: absolute;
  left: 50%;
  top: 58%;
  width: 38%;
  height: 22%;
  margin-left: -19%;
  border-radius: 0 0 40% 40%;
  background: linear-gradient(90deg, #40100f, #8a2a2a 50%, #330a0a);
  box-shadow: 0 .25rem .4rem rgba(0, 0, 0, .5);
  pointer-events: none;
}
.accuse-cap {
  position: relative;
  z-index: 1;
  width: 3.85rem;
  height: 3.85rem;
  margin-top: -.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 32% 24%, #ff9a96 0%, #e0242a 40%, #7d0a10 82%);
  border: 2px solid rgba(240, 196, 196, .9);
  box-shadow:
    0 .45rem 0 #55070b,
    0 .8rem 1.2rem rgba(0, 0, 0, .55),
    inset 0 .2rem .45rem rgba(255, 255, 255, .3);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.accuse-btn:not(:disabled) .accuse-cap { animation: accuse-breathe 3.4s ease-in-out infinite; }
@keyframes accuse-breathe {
  0%, 100% { box-shadow: 0 .45rem 0 #55070b, 0 .8rem 1.2rem rgba(0, 0, 0, .55), inset 0 .2rem .45rem rgba(255, 255, 255, .3), 0 0 0 rgba(224, 36, 42, 0); }
  50% { box-shadow: 0 .45rem 0 #55070b, 0 .8rem 1.2rem rgba(0, 0, 0, .55), inset 0 .2rem .45rem rgba(255, 255, 255, .3), 0 0 1.6rem rgba(224, 36, 42, .45); }
}
.accuse-label {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: #fff4f0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.accuse-btn:hover:not(:disabled) .accuse-cap,
.accuse-btn:focus-visible .accuse-cap {
  filter: brightness(1.1);
}
.accuse-btn:active:not(:disabled) .accuse-cap,
.accuse-btn.pressed .accuse-cap {
  transform: translateY(.38rem);
  animation: none;
  box-shadow:
    0 .08rem 0 #55070b,
    0 .2rem .4rem rgba(0, 0, 0, .45),
    inset 0 .35rem .7rem rgba(0, 0, 0, .4);
}
.accuse-btn:focus-visible { outline: none; }
.accuse-btn:focus-visible .accuse-cap { outline: 2px solid var(--brass-lit); outline-offset: 3px; }

/* ---------- the pointer ---------- */

.decision-arrow {
  position: absolute;
  inset: 24%;
  pointer-events: none;
  z-index: 4;
}
.decision-arrow-pivot {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotate(var(--aim, 0deg));
  transition: transform .55s var(--ease);
}
.decision-arrow-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.1cqmin;
  height: 2.1cqmin;
  margin: -1.05cqmin 0 0 -1.05cqmin;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, #f3e2bc, #a9884f 62%, #4a3a20 100%);
  box-shadow:
    0 0 0 .28cqmin rgba(10, 8, 5, .8),
    0 0 1.2cqmin rgba(196, 165, 116, .4);
}
.decision-arrow-shaft {
  position: absolute;
  left: 50%;
  top: 6%;
  width: .5cqmin;
  height: 44%;
  margin-left: -.25cqmin;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brass-lit) 0%, #b2915c 42%, rgba(120, 96, 58, 0) 100%);
  box-shadow: 0 0 .7cqmin rgba(196, 165, 116, .45);
}
.decision-arrow-head {
  position: absolute;
  left: 50%;
  top: 1.2%;
  width: 2cqmin;
  height: 2cqmin;
  margin-left: -1cqmin;
  border-top: .46cqmin solid var(--brass-lit);
  border-right: .46cqmin solid var(--brass);
  border-radius: .2cqmin;
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 .6cqmin rgba(228, 196, 138, .55));
  animation: aim-pulse 2.6s ease-in-out infinite;
}
@keyframes aim-pulse {
  0%, 100% { filter: drop-shadow(0 0 .5cqmin rgba(228, 196, 138, .4)); }
  50% { filter: drop-shadow(0 0 1.3cqmin rgba(228, 196, 138, .8)); }
}
.decision-arrow.tone-wake .decision-arrow-shaft {
  background: linear-gradient(180deg, #cfe0f0 0%, #7a9cbe 42%, rgba(90, 120, 150, 0) 100%);
  box-shadow: 0 0 .7cqmin rgba(150, 185, 220, .45);
}
.decision-arrow.tone-wake .decision-arrow-head {
  border-top-color: #cfe0f0;
  border-right-color: #7a9cbe;
}
.decision-arrow.tone-wake .decision-arrow-hub {
  background: radial-gradient(circle at 36% 30%, #e6f0f8, #6f8fae 62%, #26313d 100%);
  box-shadow: 0 0 0 .28cqmin rgba(6, 10, 16, .8), 0 0 1.2cqmin rgba(150, 185, 220, .45);
}
.decision-arrow.tone-vote .decision-arrow-shaft {
  background: linear-gradient(180deg, #f0a8a8 0%, #b83a3a 42%, rgba(140, 40, 40, 0) 100%);
  box-shadow: 0 0 .7cqmin rgba(208, 72, 76, .45);
}
.decision-arrow.tone-vote .decision-arrow-head {
  border-top-color: #f0a8a8;
  border-right-color: var(--danger);
}
.decision-arrow.tone-vote .decision-arrow-hub {
  background: radial-gradient(circle at 36% 30%, #f8dede, #b04a4a 62%, #3d1414 100%);
  box-shadow: 0 0 0 .28cqmin rgba(16, 6, 6, .8), 0 0 1.2cqmin rgba(208, 72, 76, .45);
}

/* ---------- seats & chairs ---------- */

.seat {
  position: absolute;
  width: 7rem;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: 0;
  z-index: 2;
  transition:
    left 1s cubic-bezier(.45, 0, .2, 1),
    top 1s cubic-bezier(.45, 0, .2, 1),
    opacity .85s ease,
    transform .9s cubic-bezier(.45, 0, .2, 1),
    filter .5s ease;
  transition-delay: calc(var(--seat-i, 0) * 32ms);
}
.seat:focus-visible { outline: none; }
.seat:focus-visible .badge,
.seat:focus-visible .cam { outline: 2px solid var(--brass-lit); outline-offset: 2px; }

.seat-chair {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5rem;
  height: 5rem;
  margin: -2.5rem 0 0 -2.5rem;
  transform: rotate(var(--seat-a, 0deg));
  transform-origin: 50% 50%;
  pointer-events: none;
  z-index: -2;
  transition: transform 1s cubic-bezier(.45, 0, .2, 1), opacity .5s ease, filter .5s ease;
  transition-delay: calc(var(--seat-i, 0) * 32ms);
}
.seat-chair::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1.15rem;
  width: 4.4rem;
  height: 3.5rem;
  margin-left: -2.2rem;
  border-radius: 1.9rem 1.9rem .45rem .45rem;
  background: linear-gradient(180deg, #4c3a26 0%, #2e2318 55%, #15100a 100%);
  box-shadow:
    inset 0 1px 0 rgba(228, 196, 138, .22),
    inset 0 -.5rem .9rem rgba(0, 0, 0, .55),
    0 .5rem 1rem rgba(0, 0, 0, .5);
}
.seat-chair::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -.72rem;
  width: 3.3rem;
  height: 2.5rem;
  margin-left: -1.65rem;
  border-radius: 1.5rem 1.5rem .3rem .3rem;
  border: 1px solid rgba(228, 196, 138, .2);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(255, 226, 178, .07), transparent 70%);
}
.seat-chair.vacant { opacity: .45; filter: saturate(.4); }
.board.is-night .seat-chair { filter: brightness(.72) saturate(.6); }

.board.spotlight-mode .seat {
  z-index: 4;
  transition-delay: 0s;
}
.board.spotlight-mode .seat:not(.spotlit):not(.nominee):not(.departing) {
  filter: brightness(.52) saturate(.72);
  opacity: .85;
}
.board.spotlight-mode.awaiting-nomination .seat:not(.spotlit):not(.nominee):not(.departing) {
  filter: none;
  opacity: 1;
}
.seat.spotlit {
  z-index: 5;
  filter: brightness(1.18);
}
.seat.nominee { z-index: 4; }
.spot-glow, .nominee-glow {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 16cqmin;
  height: 18cqmin;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.88);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity .5s ease, transform .5s ease;
}
.seat.spotlit .spot-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: radial-gradient(ellipse at 50% 42%,
    rgba(255, 246, 220, .82) 0%,
    rgba(228, 200, 138, .36) 36%,
    rgba(196, 165, 116, .1) 60%,
    transparent 74%);
  box-shadow: 0 0 5cqmin rgba(255, 230, 180, .45), 0 0 11cqmin rgba(196, 165, 116, .22);
}
.seat.nominee .nominee-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: radial-gradient(ellipse at 50% 42%,
    rgba(184, 34, 38, .58) 0%,
    rgba(104, 14, 18, .3) 40%,
    rgba(56, 8, 10, .1) 62%,
    transparent 76%);
  box-shadow: 0 0 5cqmin rgba(160, 26, 30, .48);
  animation: nominee-throb 2.8s ease-in-out infinite;
}
@keyframes nominee-throb {
  0%, 100% { opacity: .88; }
  50% { opacity: 1; }
}
.seat.spotlit .badge, .seat.spotlit .cam {
  box-shadow: 0 0 1.7rem rgba(255, 236, 200, .6), 0 0 0 2px #f3e6c8;
  filter: brightness(1.08);
}
.seat.nominee .badge, .seat.nominee .cam {
  box-shadow: 0 0 1.5rem rgba(176, 34, 38, .5), 0 0 0 2px rgba(184, 44, 44, .75);
  border-color: rgba(208, 72, 76, .9);
}
.seat.departing {
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.62);
  pointer-events: none;
  filter: grayscale(.35);
}
.seat.selected .badge, .seat.selected .cam {
  outline: 2px solid var(--brass-lit);
  outline-offset: 1px;
}
.seat.accuse-preview .badge, .seat.accuse-preview .cam {
  outline: 2px solid var(--danger);
  outline-offset: 1px;
  box-shadow: 0 0 0 4px rgba(184, 34, 38, .3), 0 0 1.2rem rgba(208, 72, 76, .35);
  animation: preview-pulse 1.6s ease-in-out infinite;
}
@keyframes preview-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(184, 34, 38, .22), 0 0 .8rem rgba(208, 72, 76, .25); }
  50% { box-shadow: 0 0 0 5px rgba(184, 34, 38, .4), 0 0 1.5rem rgba(208, 72, 76, .5); }
}

.token-wrap { position: relative; }
.badge, .cam {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid var(--brass);
  object-fit: cover;
  background: radial-gradient(circle at 35% 28%, #f6ecd4 0%, #8a6a32 74%);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  color: #1a140c;
  box-shadow: 0 .4rem .9rem rgba(0, 0, 0, .5);
  transition: box-shadow .3s ease, border-color .3s ease, filter .3s ease;
}
.badge.empty {
  background: linear-gradient(180deg, #201c17, #14110d);
  color: #7d7466;
  border-color: #443a2c;
  border-style: dashed;
  box-shadow: none;
}
.badge.ai {
  background: radial-gradient(circle at 35% 28%, #dcebf8 0%, #3d5a73 74%);
  color: #0c1218;
  border-color: #8eb4d4;
  font-size: 1.05rem;
  letter-spacing: .08em;
}
.ai-tag {
  position: absolute;
  right: -4px;
  bottom: -2px;
  background: #16242f;
  color: #c9e4f7;
  border: 1px solid #8eb4d4;
  font-size: .55rem;
  letter-spacing: .12em;
  padding: .05rem .28rem;
  border-radius: 999px;
  pointer-events: none;
}
.chat-log .whisper { color: #b7c4ce; font-style: italic; }
.chat-log .whisper .who { color: #8eb4d4; }
.seat.revoked .badge, .seat.revoked .cam {
  filter: grayscale(.88) brightness(.82);
  border-color: #6d6d6d;
}
.revoke-x {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.3rem;
  color: var(--danger);
  text-shadow: 0 2px 5px rgba(0, 0, 0, .7);
  pointer-events: none;
}
.mole-dot {
  position: absolute;
  left: -3px;
  top: -3px;
  width: .6rem;
  height: .6rem;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 .45rem rgba(208, 72, 76, .8);
}
.wake-tick {
  position: absolute;
  right: -4px;
  top: -3px;
  width: .95rem;
  height: .95rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #16220f;
  border: 1px solid var(--good);
  color: var(--good);
  font-size: .62rem;
  line-height: 1;
  pointer-events: none;
  box-shadow: 0 0 .4rem rgba(125, 186, 106, .4);
}
.seat-name {
  font-size: .8rem;
  font-weight: 500;
  max-width: 7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .8);
}
.pass-label {
  font-size: .6rem;
  letter-spacing: .16em;
  color: var(--brass);
  opacity: .85;
}
.seat-role {
  display: block;
  max-width: 7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .55rem;
  letter-spacing: .04em;
  line-height: 1.2;
  padding: .04rem .35rem;
  pointer-events: none;
  margin-top: .1rem;
}
.seat.revoked .pass-label { color: var(--danger); opacity: 1; }
.seat.immune .badge, .seat.immune .cam {
  box-shadow: 0 0 0 2px rgba(196, 165, 116, .6), 0 .4rem .9rem rgba(0, 0, 0, .5);
}
.immune-tag,
.revoking-tag {
  position: absolute;
  left: 50%;
  top: -0.55rem;
  transform: translateX(-50%);
  font-size: .48rem;
  letter-spacing: .14em;
  padding: .06rem .32rem;
  border-radius: 999px;
  pointer-events: none;
  white-space: nowrap;
}
.immune-tag {
  background: #241c14;
  color: var(--brass-lit);
  border: 1px solid rgba(196, 165, 116, .6);
}
.seat.immune .pass-label { color: var(--brass-lit); }
.seat.revoking .badge, .seat.revoking .cam {
  box-shadow: 0 0 0 2px rgba(196, 90, 90, .6), 0 .4rem .9rem rgba(0, 0, 0, .5);
}
.seat.immune.revoking .badge, .seat.immune.revoking .cam {
  box-shadow: 0 0 0 2px rgba(196, 165, 116, .6), 0 0 0 4px rgba(196, 90, 90, .5);
}
.revoking-tag {
  background: #2a1414;
  color: #e8b4b4;
  border: 1px solid rgba(196, 90, 90, .6);
}
.seat.immune.revoking .revoking-tag { top: .35rem; }
.seat.revoking .pass-label { color: #e8b4b4; }

/* ---------- rosters & logs ---------- */

.chair-roster {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.chair-roster li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
  padding: .22rem 0;
  border-bottom: 1px solid rgba(196, 165, 116, .08);
  color: var(--muted);
  font-size: .85rem;
}
.chair-roster li:last-child { border-bottom: 0; }

.wake-order {
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: wake;
  display: flex;
  flex-direction: column;
  gap: .22rem;
}
.wake-order li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .45rem;
  padding: .32rem .45rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: .85rem;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.wake-order li.current {
  color: var(--parchment);
  background: linear-gradient(90deg, rgba(196, 165, 116, .2), rgba(196, 165, 116, .05));
  border-color: var(--line-strong);
  box-shadow: inset 2px 0 0 var(--brass-lit);
}
.wake-order li.done { color: #8aa07c; }
.wake-done { color: var(--good); }

.chat-log {
  min-height: 12rem;
  max-height: 50vh;
  overflow: auto;
  margin: 0;
  padding-right: .2rem;
  font-size: .92rem;
  line-height: 1.45;
}
.chat-log p { margin: .3rem 0; }
.who { color: var(--brass); font-weight: 600; }

.chair-log {
  max-height: 11rem;
  overflow: auto;
  margin: .1rem 0 .15rem;
  font-size: .82rem;
  line-height: 1.45;
  color: #cfc6b8;
}
.chair-log p {
  margin: 0;
  padding: .18rem 0;
  border-bottom: 1px solid rgba(196, 165, 116, .07);
}
.chair-log p:last-child { border-bottom: 0; }
.chair-log-time {
  color: var(--brass);
  font-variant-numeric: tabular-nums;
  font-size: .72rem;
  margin-right: .4rem;
  opacity: .8;
}

/* ---------- composer ---------- */

.composer { display: flex; flex-direction: column; gap: .45rem; }
.composer-box { position: relative; }
.chat-compose {
  min-height: 6.2rem;
  resize: vertical;
  line-height: 1.45;
  margin-bottom: 0;
}
.composer .btn.gold { width: auto; margin: 0; align-self: flex-end; min-width: 5.5rem; }
.mention-pop {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + .28rem);
  background: #15120d;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  max-height: 12.5rem;
  overflow: auto;
  z-index: 8;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .55);
}
.mention-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(196, 165, 116, .1);
  color: inherit;
  font: inherit;
  text-align: left;
  padding: .45rem .65rem;
  cursor: pointer;
}
.mention-item:last-child { border-bottom: 0; }
.mention-item.active, .mention-item:hover { background: rgba(196, 165, 116, .16); }
.mention-item .meta { color: var(--muted); font-size: .75rem; }

.lobby-card a { color: var(--brass); }

/* ---------- device companion ---------- */

.device-code-display {
  display: block;
  width: 100%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
  letter-spacing: .3em;
  text-align: center;
  margin: 1rem 0;
  padding: .45rem 0;
  color: var(--brass-lit);
  background: rgba(196, 165, 116, .06);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.device-code-display:hover { background: rgba(196, 165, 116, .12); border-color: var(--brass); }
.device-code-display.is-copied { letter-spacing: .08em; }

.device-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(196, 165, 116, .07), transparent 55%),
    var(--ink-800);
  container-type: inline-size;
  container-name: device;
}

.device-you {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .65rem 1rem;
  padding: .9rem 1.05rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 18, 15, .95), rgba(13, 12, 11, .8));
}

.device-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1rem;
  width: min(72rem, 100%);
  margin: 0 auto;
  flex: 1;
}

.device-act {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.device-act > p { margin: 0; }
.device-act-card {
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.device-act-card .brand { margin: 0; color: var(--brass-lit); }
.device-act-card p { margin: 0; }
.device-act-card .field,
.device-act-card .btn.gold { margin-bottom: 0; }
.device-act-card .lbl { margin-bottom: 0; }
.device-act-card .lbl + .field { margin-top: -.2rem; }

.device-chat {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: .8rem;
  border: 1px solid var(--line-mid);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .18));
}
.device-chat > .brand,
.device-chat > p { margin: 0; }
.device-chat > .brand {
  color: var(--brass-lit);
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--line);
}
.device-chat .field { margin-bottom: 0; }
.device-chat .lbl { margin-bottom: 0; }
.device-chat .lbl + .field { margin-top: -.2rem; }
.device-chat .chat-compose { min-height: 4.2rem; }
.device-chat-log {
  min-height: 7.5rem;
  max-height: 14rem;
}
.device-chat-log p { margin: .22rem 0; }

.device-sheet {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.device-sheet-seats,
.device-sheet-notes {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.device-sheet-seats p { margin: 0; }
.device-sheet-notes .field { margin-bottom: 0; min-height: 8rem; }
.device-sheet-notes .lbl { margin-bottom: 0; }

.device-seat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .45rem;
}

.device-seat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  text-align: left;
  background: linear-gradient(180deg, #1a1710, #121009);
  border: 1px solid var(--line-mid);
  border-radius: var(--radius);
  color: inherit;
  font: inherit;
  padding: .7rem .8rem;
  min-height: 3.2rem;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.device-seat:hover { border-color: var(--brass); }
.device-seat.on {
  border-color: var(--brass-lit);
  box-shadow: 0 0 0 1px var(--brass-lit), 0 0 1rem rgba(196, 165, 116, .18);
}
.device-seat-name { font-weight: 600; }
.device-token { font-size: .75rem; }
.device-token-picker { margin-top: .15rem; }

@container device (min-width: 640px) {
  .device-body {
    display: grid;
    grid-template-columns: minmax(16rem, 22rem) 1fr;
    align-items: start;
  }
  .device-act { grid-column: 1; grid-row: 1; }
  .device-chat { grid-column: 1; grid-row: 2; }
  .device-sheet { grid-column: 2; grid-row: 1 / span 2; }
  .device-seat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@container device (min-width: 1100px) {
  .device-body {
    grid-template-columns: minmax(16rem, 20rem) minmax(18rem, 24rem) 1fr;
    padding: 1.4rem 1.5rem;
    width: min(88rem, 100%);
  }
  .device-act { grid-column: 1; grid-row: 1; }
  .device-chat { grid-column: 2; grid-row: 1; }
  .device-sheet { grid-column: 3; grid-row: 1; }
  .device-chat-log { max-height: min(40vh, 22rem); }
  .device-sheet {
    display: grid;
    grid-template-columns: 1fr minmax(14rem, 18rem);
    gap: 1.1rem;
    align-items: start;
  }
  .device-seat-grid {
    grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  }
}

@media (min-width: 640px) {
  .device-body {
    display: grid;
    grid-template-columns: minmax(16rem, 22rem) 1fr;
    align-items: start;
  }
  .device-act { grid-column: 1; grid-row: 1; }
  .device-chat { grid-column: 1; grid-row: 2; }
  .device-sheet { grid-column: 2; grid-row: 1 / span 2; }
  .device-seat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .device-body {
    grid-template-columns: minmax(16rem, 20rem) minmax(18rem, 24rem) 1fr;
    padding: 1.4rem 1.5rem;
    width: min(88rem, 100%);
  }
  .device-act { grid-column: 1; grid-row: 1; }
  .device-chat { grid-column: 2; grid-row: 1; }
  .device-sheet { grid-column: 3; grid-row: 1; }
  .device-chat-log { max-height: min(40vh, 22rem); }
  .device-sheet {
    display: grid;
    grid-template-columns: 1fr minmax(14rem, 18rem);
    gap: 1.1rem;
  }
  .device-seat-grid {
    grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
