/* client/styles/global.css */
* {
  box-sizing: border-box;
}

html, body, #game {
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  color: #fff;
  background: #0b0e12;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
}

canvas {
  display: block;
  outline: none;
}

.hidden {
  display: none !important;
}

.overlay {
  position: fixed;
  z-index: 100;
  display: grid;
  backdrop-filter: blur(9px);
  background: radial-gradient(circle at 50% 35%, #19252dd1, #06080af5);
  place-items:  center;
  inset: 0;
}

.panel {
  background: #11161bf0;
  border: 1px solid #ffffff1a;
  border-radius: 22px;
  box-shadow: 0 24px 90px #00000080;
}

.join-panel {
  width: min(460px, 100vw - 32px);
  padding: 30px;
}

.eyebrow {
  letter-spacing: .16em;
  color: #f478df;
  font-size: 11px;
  font-weight: 900;
}

.join-panel h1 {
  letter-spacing: -.045em;
  margin: 7px 0 6px;
  font-size: 36px;
}

.muted {
  color: #98a2ad;
}

.join-panel p {
  margin: 0 0 20px;
  line-height: 1.5;
}

.join-panel input {
  color: #fff;
  font: inherit;
  outline: none;
  background: #0d1217;
  border: 1px solid #ffffff1c;
  border-radius: 12px;
  width: 100%;
  margin: 6px 0;
  padding: 13px 14px;
}

.join-panel input:focus {
  border-color: #ff59e5;
  box-shadow: 0 0 0 3px #ff46e221;
}

button {
  appearance: none;
  color: #fff;
  cursor: pointer;
  background: #252d34;
  border: 1px solid #ffffff21;
  border-radius: 9px;
  padding: 10px 14px;
  font-weight: 900;
}

button.primary {
  background: linear-gradient(135deg, #f13ccf, #a52fd8);
  border-color: #0000;
}

.join-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 10px;
}

.join-panel small {
  display: block;
  color: #6f7b85;
  margin-top: 15px;
}

.error {
  color: #ff7f7f;
  min-height: 20px;
  padding-top: 3px;
  font-size: 13px;
}

.peek-top {
  position: fixed;
  z-index: 36;
  display: grid;
  grid-template-columns: 1fr 1fr 110px 1fr;
  pointer-events: none;
  text-transform: uppercase;
  text-shadow: 0 2px 4px #000000eb;
  align-items:  start;
  height: 56px;
  padding: 0 31px;
  top: 22px;
  left: 0;
  right: 0;
}

.peek-top strong, .peek-top b {
  letter-spacing: .025em;
  font-family: Impact, Arial Narrow, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 500;
}

.peek-timer {
  display: grid;
  justify-self: start;
}

.peek-timer strong {
  font-size: 34px;
  line-height: .95;
}

.peek-timer small {
  letter-spacing: .15em;
  color: #ffffffa8;
  margin-top: 5px;
  font-size: 8px;
  font-weight: 900;
}

.peek-team {
  font-size: 29px;
  line-height: 1;
}

.peek-props {
  justify-self: center;
}

.peek-hunters {
  justify-self: end;
}

.peek-score {
  display: flex;
  justify-content: center;
  align-items:  center;
  gap: 8px;
  font: 500 31px / 1 Impact, Arial Narrow, sans-serif;
}

.peek-score b:first-child {
  color: #507dff;
}

.peek-score b:last-child {
  color: #ff563f;
}

.peek-score span {
  color: #fff;
  font-weight: 500;
}

.room-mini {
  position: fixed;
  z-index: 35;
  display: flex;
  color: #ffffff6b;
  text-shadow: 0 1px 2px #000;
  align-items:  center;
  gap: 5px;
  font-size: 9px;
  font-weight: 800;
  top: 81px;
  left: 31px;
}

.room-mini .role-mini {
  color: #ff7ce9;
  margin-left: 3px;
}

.room-mini button {
  margin-left: 5px;
  padding: 5px 8px;
  font-size: 9px;
}

.health-hud {
  position: fixed;
  z-index: 34;
  pointer-events: none;
  width: min(390px, 32vw);
  height: 42px;
  bottom: 27px;
  left: 31px;
}

.health-bar {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 3% 100%);
  overflow: hidden;
  background: #4011169e;
  width: 100%;
  height: 38px;
  box-shadow: 0 2px 4px #00000061;
}

.health-fill {
  position: absolute;
  background: linear-gradient(90deg, #ff3e48, #f84b60);
  width: 100%;
  transition: width .12s linear;
  inset: 0 auto 0 0;
}

.health-content {
  position: absolute;
  display: flex;
  text-shadow: 0 1px 2px #0000008c;
  align-items:  center;
  gap: 10px;
  padding: 0 15px;
  font-family: Impact, Arial Narrow, sans-serif;
  inset: 0;
}

.health-content span {
  font-size: 21px;
}

.health-content strong {
  font-size: 23px;
  font-weight: 500;
}

.skills {
  position: fixed;
  z-index: 37;
  display: flex;
  pointer-events: none;
  flex-direction: column;
  gap: 8px;
  top: 50%;
  right: 23px;
  transform: translateY(-18%);
}

.skill {
  position: relative;
  display: flex;
  text-align: center;
  background: linear-gradient(145deg, #2746d2e0, #223597b8);
  border: 1px solid #849dff66;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  width: 72px;
  height: 62px;
  padding: 7px;
  box-shadow: 0 2px 8px #00000040;
}

.skill kbd {
  position: absolute;
  color: #fff;
  display: grid;
  background: #070d3db3;
  border: 0;
  place-items:  center;
  min-width: 19px;
  height: 18px;
  padding: 0 4px;
  font: 900 8px / 1 system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue;
  bottom: 3px;
  right: 3px;
}

.skill span {
  text-transform: uppercase;
  max-width: 60px;
  font-size: 9px;
  font-weight: 950;
  line-height: 1.05;
}

.skill strong {
  color: #d8e1ff;
  letter-spacing: .04em;
  margin-top: 4px;
  font-size: 7px;
}

.skill.cooldown {
  filter: saturate(.45);
  opacity: .55;
}

.skill.cooldown strong {
  color: #ffd073;
}

kbd {
  display: inline-flex;
  color: #f8fbfd;
  background: #272f37;
  border: 1px solid #44505b;
  border-radius: 5px;
  justify-content: center;
  align-items:  center;
  min-width: 23px;
  height: 23px;
  padding: 0 6px;
  font: 700 10px / 1 system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue;
  box-shadow: inset 0 -2px #0000004d;
}

.instructions {
  position: fixed;
  z-index: 30;
  pointer-events: none;
  color: #ffffffb3;
  backdrop-filter: blur(3px);
  background: #070a0e70;
  border-radius: 7px;
  padding: 7px 10px;
  font-size: 10px;
  line-height: 1.65;
  bottom: 78px;
  left: 31px;
}

.crosshair {
  position: fixed;
  z-index: 31;
  pointer-events: none;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.crosshair:before, .crosshair:after, .crosshair span:before, .crosshair span:after {
  content: "";
  position: absolute;
  background: #fffffff2;
  box-shadow: 0 0 4px #000000a6;
}

.crosshair:before {
  width: 2px;
  height: 5px;
  top: 0;
  left: 8px;
}

.crosshair:after {
  width: 2px;
  height: 5px;
  bottom: 0;
  left: 8px;
}

.crosshair span:before {
  width: 5px;
  height: 2px;
  top: 8px;
  left: 0;
}

.crosshair span:after {
  width: 5px;
  height: 2px;
  top: 8px;
  right: 0;
}

.hit-marker {
  position: fixed;
  z-index: 40;
  color: #fff;
  text-shadow: 0 0 10px #e84e4e;
  pointer-events: none;
  font-size: 42px;
  font-weight: 200;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
}

.target-hint {
  position: fixed;
  z-index: 36;
  pointer-events: none;
  background: #110512ad;
  border: 1px solid #ff46e2a6;
  border-radius: 6px;
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 900;
  top: calc(50% + 34px);
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 14px #ff30dc2e;
}

.toast {
  position: fixed;
  z-index: 60;
  background: #090d11e0;
  border: 1px solid #ffffff1f;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 800;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
}

.round-banner {
  position: fixed;
  z-index: 70;
  text-align: center;
  pointer-events: none;
  backdrop-filter: blur(7px);
  background: #05080ab8;
  border: 1px solid #ff4ae252;
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 28px;
  font-weight: 950;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hunter-blind {
  position: fixed;
  z-index: 45;
  display: grid;
  background: #080b0e;
  place-items:  center;
  inset: 0;
}

.blind-card {
  text-align: center;
  display: grid;
  gap: 8px;
}

.blind-card span {
  letter-spacing: .2em;
  color: #f075dc;
  font-size: 12px;
  font-weight: 900;
}

.blind-card strong {
  font-size: 27px;
}

.blind-card small {
  color: #89949d;
}

.radar-reading {
  position: fixed;
  z-index: 55;
  display: grid;
  text-align: center;
  background: #090d11c2;
  border: 1px solid #ffffff1f;
  border-radius: 8px;
  gap: 3px;
  width: 156px;
  padding: 10px;
  top: 50%;
  right: 108px;
  transform: translateY(-30%);
}

.radar-reading span {
  letter-spacing: .18em;
  color: #8c99a4;
  font-size: 8px;
  font-weight: 900;
}

.radar-reading strong {
  font-size: 23px;
}

.radar-reading small {
  color: #aab4bc;
  font-size: 9px;
}

.radar-reading.hot strong {
  color: #f77;
}

.radar-reading.warm strong {
  color: #ffc66f;
}

.radar-reading.cold strong {
  color: #7cc2ff;
}

.ammo-hud {
  position: fixed;
  z-index: 34;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  pointer-events: none;
  background: #080c10ad;
  border-left: 3px solid #5074ffc7;
  column-gap: 9px;
  min-width: 142px;
  padding: 9px 12px;
  bottom: 27px;
  right: 23px;
}

.ammo-hud > span {
  letter-spacing: .15em;
  color: #8996a0;
  font-size: 8px;
  font-weight: 900;
}

.ammo-hud > strong {
  grid-row: 1 / 3;
  grid-column: 2;
  font-size: 26px;
  line-height: 1;
}

.ammo-hud > strong b {
  font: inherit;
  color: #fff;
}

.ammo-hud > strong i {
  color: #68737c;
  margin: 0 2px;
  font-size: 14px;
  font-style: normal;
}

.ammo-hud > strong small {
  color: #9da8b1;
  font-size: 13px;
}

.ammo-hud > em {
  color: #8ba4ff;
  letter-spacing: .05em;
  margin-top: 4px;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}

.ammo-hud.reloading > em {
  color: #ffc06c;
}

.ammo-hud.empty > strong b {
  color: #ff7f7f;
}

@media (max-width: 760px) {
  .peek-top {
    grid-template-columns: 1fr 1fr 62px 1fr;
    padding: 0 12px;
    top: 10px;
  }

  .peek-timer strong {
    font-size: 23px;
  }

  .peek-team {
    font-size: 16px;
  }

  .peek-score {
    gap: 4px;
    font-size: 19px;
  }

  .room-mini {
    top: 58px;
    left: 12px;
  }

  .skills {
    top: auto;
    bottom: 72px;
    right: 8px;
    transform: none;
  }

  .skill {
    width: 54px;
    height: 49px;
  }

  .skill span {
    font-size: 7px;
  }

  .health-hud {
    width: 48vw;
    height: 36px;
    bottom: 12px;
    left: 10px;
  }

  .health-bar {
    height: 34px;
  }

  .health-content strong {
    font-size: 19px;
  }

  .instructions {
    display: none !important;
  }

  .ammo-hud {
    min-width: 120px;
    bottom: 12px;
    right: 10px;
  }

  .round-banner {
    width: max-content;
    max-width: 90vw;
    font-size: 20px;
  }
}

.smoke-veil {
  position: fixed;
  z-index: 29;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: normal;
  background: radial-gradient(circle at 50% 55%, #e1e8eb99, #b8c4c9e0);
  transition: opacity 80ms linear;
  inset: 0;
}

:root {
  --hud-bg: #0a0f15c7;
  --hud-border: #ffffff21;
  --hud-muted: #aab5c0;
  --hud-blue: #668cff;
  --hud-pink: #ff54df;
  --hud-red: #ff4f62;
}

.room-mini {
  backdrop-filter: blur(6px);
  text-shadow: 0 1px 2px #000;
  background: #080c116b;
  border: 1px solid #ffffff0d;
  border-radius: 8px;
  padding: 5px 8px;
  top: 76px;
}

.skills {
  gap: 7px;
  right: 26px;
  transform: translateY(-12%);
}

.skill {
  border: 1px solid var(--hud-border);
  border-left: 3px solid var(--hud-blue);
  backdrop-filter: blur(8px);
  background: linear-gradient(145deg, #111c30e0, #0d1320d1);
  border-radius: 9px;
  width: 70px;
  height: 58px;
  box-shadow: 0 8px 22px #0003;
}

.skill:first-child {
  border-left-color: #78bfff;
}

.skill:nth-child(2) {
  border-left-color: #9e86ff;
}

.skill:nth-child(3) {
  border-left-color: #f06ddd;
}

.skill kbd {
  box-shadow: none;
  background: #00000073;
  border: 1px solid #ffffff21;
  border-radius: 4px;
  bottom: 5px;
  right: 5px;
}

.skill span {
  letter-spacing: .045em;
  font-size: 9px;
}

.skill strong {
  color: #bfc9d7;
  font-size: 7px;
}

.skill.cooldown {
  opacity: .48;
  filter: saturate(.55);
}

.health-hud {
  width: min(350px, 29vw);
  bottom: 24px;
}

.health-bar {
  clip-path: polygon(0 0, 100% 0, 96% 100%, 2% 100%);
  background: #10141bd1;
  border: 1px solid #ffffff1a;
  height: 36px;
  box-shadow: 0 8px 26px #0003;
}

.health-fill {
  background: linear-gradient(90deg, #ff4459, #ff6274);
}

.ammo-hud {
  border: 1px solid var(--hud-border);
  border-left: 3px solid var(--hud-blue);
  background: var(--hud-bg);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  bottom: 24px;
  box-shadow: 0 8px 26px #0003;
}

.instructions {
  display: flex;
  color: #d7dfe7;
  backdrop-filter: none;
  white-space: nowrap;
  background: none;
  align-items:  center;
  gap: 6px;
  padding: 0;
  font-size: 9px;
  line-height: 1.3;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
}

.instructions > div {
  display: flex;
  background: var(--hud-bg);
  border: 1px solid var(--hud-border);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  align-items:  center;
  gap: 5px;
  height: 34px;
  padding: 5px 9px;
  box-shadow: 0 8px 26px #0000002e;
}

.instructions kbd {
  box-shadow: none;
  color: #f6f8fb;
  background: #ffffff14;
  border: 1px solid #ffffff26;
  min-width: 20px;
  height: 19px;
  padding: 0 5px;
  font-size: 8px;
}

.target-hint {
  letter-spacing: .025em;
  background: #0b0e13d1;
  border: 1px solid #ff54df8c;
  border-radius: 7px;
  top: calc(50% + 31px);
  box-shadow: 0 6px 20px #0000003d, 0 0 16px #ff30dc1f;
}

.toast {
  background: var(--hud-bg);
  border: 1px solid var(--hud-border);
  backdrop-filter: blur(8px);
  border-radius: 9px;
  box-shadow: 0 10px 32px #0000003d;
}

.hit-marker {
  color: #fff;
  opacity: 1;
  text-shadow: 0 0 4px #000, 0 0 15px #ff4e5cf2;
  animation: hitPop .18s ease-out both;
  font-family: Impact, Arial Narrow, sans-serif;
  font-size: 46px;
  line-height: 1;
}

.hit-marker.confirmed-kill {
  color: #ffd36f;
  text-shadow: 0 0 5px #000, 0 0 18px #ff8b3d;
  font-size: 38px;
}

.hit-confirm {
  position: fixed;
  z-index: 41;
  letter-spacing: .16em;
  color: #fff;
  text-shadow: 0 2px 5px #000;
  pointer-events: none;
  animation: hitText .25s ease-out both;
  font: 900 10px / 1 system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue;
  top: calc(50% + 28px);
  left: 50%;
  transform: translateX(-50%);
}

.hit-confirm.kill {
  color: #ffd46e;
  font-size: 12px;
}

.hit-flash {
  position: fixed;
  z-index: 28;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, #ffffff12 0, #ff4d590d 20%, #0000 47%);
  inset: 0;
}

.hit-flash.active {
  animation: hitFlash .16s ease-out;
}

.crosshair.confirmed:before, .crosshair.confirmed:after, .crosshair.confirmed span:before, .crosshair.confirmed span:after {
  background: #ff6877;
  box-shadow: 0 0 7px #ff4859f2;
}

@keyframes hitPop {
  0% {
    transform: translate(-50%, -52%)scale(.45);
    opacity: 0;
  }

  45% {
    transform: translate(-50%, -52%)scale(1.25);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -52%)scale(1);
    opacity: 1;
  }
}

@keyframes hitText {
  from {
    transform: translate(-50%, 8px);
    opacity: 0;
  }

  to {
    transform: translate(-50%);
    opacity: 1;
  }
}

@keyframes hitFlash {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.round-banner {
  backdrop-filter: none;
  box-shadow: none;
  pointer-events: none;
  background: none;
  border: 0;
  padding: 0;
}

.round-banner.notice {
  top: 32%;
}

.round-notice {
  letter-spacing: .035em;
  backdrop-filter: blur(10px);
  background: #080c11d1;
  border: 1px solid #ffffff21;
  border-radius: 10px;
  padding: 12px 22px;
  font: 900 22px / 1 system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue;
  box-shadow: 0 16px 45px #0000004d;
}

.round-banner.victory {
  display: grid;
  pointer-events: none;
  background: radial-gradient(circle at 50% 42%, #050a1157, #04070bad);
  place-items:  center;
  inset: 0;
  transform: none;
}

.victory-panel {
  text-align: center;
  backdrop-filter: blur(14px);
  background: linear-gradient(145deg, #0d141ff2, #080c13f0);
  border: 1px solid #ffffff26;
  border-radius: 18px;
  width: min(490px, 100vw - 34px);
  padding: 30px 36px 26px;
  box-shadow: 0 28px 90px #00000085;
}

.victory-panel:before {
  content: "";
  display: block;
  background: var(--hud-pink);
  border-radius: 99px;
  width: 80px;
  height: 4px;
  margin: -6px auto 19px;
  box-shadow: 0 0 18px #ff54df59;
}

.hunters-win .victory-panel:before {
  background: #5f89ff;
  box-shadow: 0 0 18px #5f89ff66;
}

.victory-panel > small {
  display: block;
  color: #8f9baa;
  letter-spacing: .22em;
  font-size: 10px;
  font-weight: 900;
}

.victory-panel > strong {
  display: block;
  letter-spacing: .035em;
  margin: 9px 0 4px;
  font-family: Impact, Arial Narrow, sans-serif;
  font-size: 38px;
  font-weight: 500;
}

.victory-panel > p {
  color: #b7c1cb;
  margin: 0;
  font-size: 13px;
}

.victory-score {
  display: flex;
  justify-content: center;
  align-items:  center;
  gap: 13px;
  margin: 21px 0 18px;
  font: 500 34px / 1 Impact, Arial Narrow, sans-serif;
}

.victory-score b:first-child {
  color: #668cff;
}

.victory-score b:last-child {
  color: #ff5b69;
}

.victory-score span {
  color: #707c88;
}

.victory-panel > em {
  color: #8e9aa6;
  letter-spacing: .08em;
  font-size: 10px;
  font-style: normal;
}

.victory-panel > em span {
  color: #fff;
  font-weight: 900;
}

.scoreboard {
  position: fixed;
  z-index: 80;
  display: grid;
  pointer-events: none;
  backdrop-filter: blur(3px);
  background: #04070a6b;
  place-items:  start center;
  padding-top: 10vh;
  inset: 0;
}

.scoreboard-panel {
  overflow: hidden;
  background: linear-gradient(150deg, #0c121bf5, #080c12f2);
  border: 1px solid #ffffff24;
  border-radius: 16px;
  width: min(720px, 100vw - 34px);
  max-height: 72vh;
  box-shadow: 0 28px 90px #0000007a;
}

.scoreboard-head {
  display: flex;
  border-bottom: 1px solid #ffffff14;
  justify-content: space-between;
  align-items:  center;
  height: 70px;
  padding: 14px 20px;
}

.scoreboard-head div {
  display: grid;
}

.scoreboard-head small {
  color: #788593;
  letter-spacing: .2em;
  font-size: 8px;
  font-weight: 900;
}

.scoreboard-head strong {
  font-size: 20px;
}

.scoreboard-head > span {
  color: #7f8b97;
  letter-spacing: .15em;
  font-size: 9px;
  font-weight: 900;
}

.scoreboard-columns, .scoreboard-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 110px 70px 90px;
  align-items:  center;
}

.scoreboard-columns {
  color: #697583;
  letter-spacing: .13em;
  background: #ffffff06;
  height: 34px;
  padding: 0 20px;
  font-size: 8px;
  font-weight: 900;
}

.scoreboard-rows {
  overflow: auto;
  max-height: calc(72vh - 104px);
}

.scoreboard-row {
  border-top: 1px solid #ffffff0e;
  min-height: 48px;
  padding: 0 20px;
  font-size: 11px;
}

.scoreboard-row.me {
  background: #5a7eff14;
}

.score-player {
  display: flex;
  align-items:  center;
  gap: 9px;
}

.score-player b {
  font-size: 12px;
}

.score-player small {
  color: #ff8aeb;
  letter-spacing: .08em;
  background: #ff54df24;
  border-radius: 4px;
  padding: 3px 5px;
  font-size: 7px;
}

.role-dot {
  background: #8995a0;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.role-dot.prop {
  background: #ff65db;
}

.role-dot.hunter {
  background: #5d8cff;
}

.score-role {
  letter-spacing: .08em;
  font-size: 9px;
  font-weight: 900;
}

.score-role.prop {
  color: #ff7be3;
}

.score-role.hunter {
  color: #7aa0ff;
}

.score-status {
  color: #8d99a5;
  font-size: 9px;
}

.smoke-veil {
  z-index: 39;
  background: radial-gradient(circle at 50% 52%, #e0e7ea 0%, #c6cfd3 48%, #a7b4ba 100%);
  transition: opacity 60ms linear;
}

@media (max-width: 900px) {
  .instructions {
    bottom: 14px;
  }

  .instructions > div:first-child {
    display: none;
  }

  .skills {
    right: 10px;
  }

  .health-hud {
    left: 12px;
  }

  .ammo-hud {
    right: 12px;
  }

  .scoreboard-columns, .scoreboard-row {
    grid-template-columns: minmax(140px, 1fr) 80px 48px 68px;
  }

  .scoreboard-panel {
    width: calc(100vw - 22px);
  }

  .victory-panel {
    padding: 25px 22px;
  }

  .victory-panel > strong {
    font-size: 30px;
  }
}

.lobby-overlay {
  display: block;
  overflow: auto;
  background: radial-gradient(circle at 20% 10%, #374a5c6b, #0000 38%), linear-gradient(145deg, #101820, #070a0e 70%);
  padding: clamp(18px, 4vw, 52px);
}

.lobby-shell {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.lobby-header {
  display: flex;
  justify-content: space-between;
  align-items:  end;
  gap: 26px;
  margin-bottom: 22px;
}

.lobby-header h1 {
  letter-spacing: -.055em;
  margin: 5px 0 3px;
  font-size: clamp(34px, 5vw, 58px);
}

.lobby-header p {
  color: #8f9ba7;
  margin: 0;
  font-size: 13px;
}

.player-name-field {
  width: min(270px, 34vw);
}

.player-name-field span, .create-room label > span {
  display: block;
  color: #778491;
  letter-spacing: .15em;
  margin-bottom: 6px;
  font-size: 8px;
  font-weight: 900;
}

.lobby-overlay input {
  color: #fff;
  font: inherit;
  outline: none;
  background: #060a0ecc;
  border: 1px solid #ffffff1c;
  border-radius: 9px;
  width: 100%;
  padding: 12px 13px;
}

.lobby-overlay input:focus {
  border-color: #ff59e5;
  box-shadow: 0 0 0 3px #ff46e21a;
}

.lobby-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, .7fr);
  gap: 16px;
}

.room-browser, .create-room {
  backdrop-filter: blur(12px);
  background: #0c1218e3;
  border-radius: 17px;
}

.room-browser {
  overflow: hidden;
  min-height: 470px;
}

.room-browser-head {
  display: flex;
  border-bottom: 1px solid #ffffff12;
  justify-content: space-between;
  align-items:  center;
  height: 78px;
  padding: 17px 18px;
}

.room-browser-head div, .create-room-copy {
  display: grid;
  gap: 3px;
}

.room-browser-head small, .create-room-copy > small {
  color: #788591;
  letter-spacing: .17em;
  font-size: 8px;
  font-weight: 900;
}

.room-browser-head strong, .create-room-copy > strong {
  font-size: 20px;
}

.icon-button {
  background: #ffffff0e;
  border-radius: 9px;
  width: 37px;
  height: 37px;
  padding: 0;
  font-size: 21px;
}

.room-list {
  overflow: auto;
  min-height: 345px;
  max-height: 52vh;
  padding: 8px;
}

.room-card {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) 90px 105px 80px;
  text-align: left;
  background: #ffffff06;
  border: 1px solid #ffffff13;
  border-radius: 10px;
  align-items:  center;
  gap: 10px;
  width: 100%;
  height: 64px;
  margin: 5px 0;
  padding: 0 13px;
  transition: all .13s;
}

.room-card:hover {
  background: #6886ff13;
  border-color: #718fff47;
  transform: translateY(-1px);
}

.room-card:disabled {
  opacity: .38;
  cursor: not-allowed;
  transform: none;
}

.room-title {
  display: flex;
  align-items:  center;
  gap: 9px;
  min-width: 0;
}

.room-lock {
  display: grid;
  background: #ffffff0d;
  border-radius: 6px;
  place-items:  center;
  width: 24px;
  height: 24px;
  font-size: 12px;
}

.room-title div {
  display: grid;
  min-width: 0;
}

.room-title strong {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
}

.room-title small {
  color: #6f7c88;
  margin-top: 2px;
  font-size: 8px;
}

.room-phase {
  letter-spacing: .07em;
  color: #a5b0ba;
  font-size: 9px;
  font-weight: 900;
}

.room-phase.waiting {
  color: #70d6a0;
}

.room-phase.hiding {
  color: #e9c873;
}

.room-phase.hunting {
  color: #ff7581;
}

.room-pop {
  color: #c7d0d7;
  font-size: 10px;
}

.room-pop b {
  color: #fff;
  font-size: 14px;
}

.room-enter {
  color: #8291a0;
  justify-self: end;
  font-size: 9px;
  font-weight: 900;
}

.room-empty {
  display: grid;
  color: #687580;
  text-align: center;
  place-items:  center;
  height: 310px;
  font-size: 12px;
}

.room-browser-foot {
  display: flex;
  color: #65717d;
  border-top: 1px solid #ffffff0f;
  justify-content: space-between;
  align-items:  center;
  height: 39px;
  padding: 0 17px;
  font-size: 8px;
}

.create-room {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.create-room-copy p {
  color: #818e9a;
  margin: 4px 0 19px;
  font-size: 11px;
  line-height: 1.45;
}

.create-room label {
  display: block;
  margin: 6px 0;
}

.create-room label em {
  color: #606c77;
  font-style: normal;
  font-weight: 600;
}

.create-room-btn {
  height: 43px;
  margin-top: 8px;
}

.manual-join-btn {
  color: #8e9aa5;
  background: none;
  margin-top: 7px;
}

.lobby-note {
  margin-top: auto;
  padding-top: 20px;
  color: #58636d !important;
  font-size: 8px !important;
}

.room-password-modal {
  position: fixed;
  z-index: 130;
  display: grid;
  backdrop-filter: blur(8px);
  background: #030609ad;
  place-items:  center;
  inset: 0;
}

.password-card {
  width: min(370px, 100vw - 30px);
  padding: 23px;
}

.password-card > small {
  color: #ff79df;
  letter-spacing: .18em;
  font-size: 8px;
  font-weight: 900;
}

.password-card > strong {
  display: block;
  margin: 6px 0 2px;
  font-size: 22px;
}

.password-card > p {
  color: #818d98;
  margin: 0 0 15px;
  font-size: 11px;
}

.password-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 7px;
}

@media (max-width: 760px) {
  .lobby-overlay {
    padding: 18px 12px;
  }

  .lobby-header {
    flex-direction: column;
    align-items: stretch;
  }

  .player-name-field {
    width: 100%;
  }

  .lobby-grid {
    grid-template-columns: 1fr;
  }

  .room-browser {
    min-height: 400px;
  }

  .room-list {
    max-height: 42vh;
  }

  .room-card {
    grid-template-columns: minmax(110px, 1fr) 72px 68px;
  }

  .room-enter {
    display: none;
  }

  .create-room {
    min-height: 390px;
  }
}

.privacy-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin: 9px 0 5px;
}

.privacy-option {
  display: grid;
  text-align: left;
  color: #a9b4be;
  background: #ffffff06;
  border: 1px solid #ffffff17;
  align-content:  center;
  gap: 2px;
  height: 54px;
  padding: 8px 10px;
}

.privacy-option strong {
  color: #d6dde4;
  font-size: 11px;
}

.privacy-option small {
  color: #697681;
  font-size: 8px;
}

.privacy-option.active {
  background: #5c80ff1c;
  border-color: #6489ff61;
  box-shadow: inset 0 0 0 1px #6489ff14;
}

.privacy-option.active strong {
  color: #fff;
}

.room-pass-label {
  transition: all .16s;
}

.room-pass-label.disabled {
  opacity: .38;
}

.room-pass-label.disabled input {
  cursor: not-allowed;
  background: #04070a8c;
}

.lobby-header-actions {
  display: flex;
  align-items:  end;
  gap: 10px;
}

@media (max-width: 760px) {
  .lobby-header-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.create-map-picker {
  margin: 9px 0 7px;
}

.create-map-head {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  margin-bottom: 6px;
}

.create-map-head > span {
  color: #778491;
  letter-spacing: .15em;
  font-size: 8px;
  font-weight: 900;
}

.create-map-head > small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 150px;
  color: #64717d !important;
  margin: 0 !important;
  font-size: 7px !important;
}

.create-map-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: auto;
  gap: 6px;
  max-height: 190px;
  padding-right: 2px;
}

.map-pick-card {
  position: relative;
  overflow: hidden;
  text-align: left;
  background: #0a0f14;
  border: 1px solid #ffffff17;
  border-radius: 9px;
  min-width: 0;
  height: 93px;
  padding: 0;
}

.map-pick-card img, .map-pick-placeholder {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 66px;
  inset: 0 0 27px;
}

.map-pick-placeholder {
  display: grid;
  color: #52616c;
  background: linear-gradient(145deg, #1c2730, #10161c);
  place-items:  center;
  font-size: 17px;
}

.map-pick-card:after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: linear-gradient(#0000, #05080beb);
  inset: 36px 0 27px;
}

.map-pick-copy {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 1px;
  bottom: 5px;
  left: 7px;
  right: 7px;
}

.map-pick-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 8px;
}

.map-pick-copy small {
  color: #66737f !important;
  margin: 0 !important;
  font-size: 6px !important;
}

.map-pick-card.selected {
  border-color: #788fff;
  box-shadow: inset 0 0 0 1px #788fff73, 0 0 0 2px #5674ff14;
}

.map-pick-card.selected .map-pick-copy strong {
  color: #fff;
}

.map-pick-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: #697681;
  padding: 18px;
  font-size: 8px;
}

.room-map-thumb {
  object-fit: cover;
  background: #111820;
  border: 1px solid #ffffff14;
  border-radius: 7px;
  width: 38px;
  height: 38px;
}

.room-map-fallback {
  display: grid;
  color: #65737f;
  place-items:  center;
  font-size: 13px;
}

.room-title {
  gap: 8px;
}

.room-title-copy {
  display: grid;
  min-width: 0;
}

.room-title-copy em {
  color: #65737e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 1px;
  font-size: 7px;
  font-style: normal;
}

.room-card {
  grid-template-columns: minmax(170px, 1fr) 90px 105px 80px;
}

.create-room {
  min-height: 570px;
}

@media (max-width: 760px) {
  .create-map-list {
    max-height: 170px;
  }

  .room-card {
    grid-template-columns: minmax(145px, 1fr) 72px 68px;
  }

  .room-map-thumb {
    width: 34px;
    height: 34px;
  }
}

.lobby-overlay {
  background: radial-gradient(circle at 50% -10%, #32445257, #0000 42%), linear-gradient(155deg, #10171d, #070a0d 68%);
  padding: clamp(24px, 5vw, 64px);
}

.lobby-shell-clean {
  width: min(920px, 100%);
}

.lobby-header-clean {
  align-items:  center;
  margin-bottom: 18px;
}

.lobby-brand-copy .eyebrow {
  color: #83909b;
  letter-spacing: .2em;
  font-size: 9px;
}

.lobby-header-clean h1 {
  letter-spacing: -.06em;
  margin: 2px 0 4px;
  font-size: clamp(38px, 5vw, 54px);
}

.lobby-header-clean p {
  color: #74808b;
  font-size: 12px;
}

.lobby-create-trigger {
  display: flex;
  border-radius: 10px;
  align-items:  center;
  gap: 7px;
  height: 43px;
  padding: 0 17px;
  font-size: 11px;
  box-shadow: 0 10px 30px #af32d529;
}

.lobby-create-trigger span {
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

.lobby-main {
  display: block;
}

.lobby-main .room-browser {
  background: #0b1015e0;
  border-color: #ffffff13;
  border-radius: 15px;
  width: 100%;
  min-height: 500px;
  box-shadow: 0 24px 70px #00000040;
}

.lobby-main .room-browser-head {
  height: 72px;
  padding: 15px 17px;
}

.lobby-main .room-browser-head small {
  color: #65717c;
}

.lobby-main .room-browser-head strong {
  font-size: 17px;
  font-weight: 800;
}

.lobby-main .room-list {
  min-height: 380px;
  max-height: 58vh;
  padding: 7px 8px 10px;
}

.lobby-main .room-card {
  grid-template-columns: minmax(210px, 1fr) 90px 100px 72px;
  background: #ffffff05;
  border-color: #ffffff0f;
  border-radius: 9px;
  height: 72px;
  margin: 5px 0;
  padding: 0 12px;
}

.lobby-main .room-card:hover {
  background: #6179d211;
  border-color: #778fe638;
}

.lobby-main .room-map-thumb {
  border-radius: 7px;
  width: 46px;
  height: 46px;
}

.lobby-main .room-title-copy strong {
  font-size: 12px;
}

.lobby-main .room-title-copy em {
  color: #788591;
  font-size: 7px;
}

.lobby-main .room-title-copy small {
  color: #56626d;
  font-size: 7px;
}

.lobby-main .room-browser-foot {
  color: #58646e;
  height: 38px;
}

.lobby-modal {
  position: fixed;
  z-index: 145;
  display: grid;
  backdrop-filter: blur(10px);
  background: #020508b8;
  place-items:  center;
  padding: 18px;
  inset: 0;
}

.create-room-dialog, .join-room-dialog {
  overflow: hidden;
  background: linear-gradient(155deg, #10161dfa, #090d12fa);
  border: 1px solid #ffffff1a;
  border-radius: 16px;
  box-shadow: 0 30px 100px #00000094;
}

.create-room-dialog {
  display: flex;
  flex-direction: column;
  width: min(720px, 100vw - 28px);
  max-height: min(88vh, 790px);
}

.join-room-dialog {
  width: min(410px, 100vw - 28px);
}

.modal-head {
  display: flex;
  border-bottom: 1px solid #fff1;
  justify-content: space-between;
  align-items:  flex-start;
  gap: 20px;
  padding: 20px 22px 17px;
}

.modal-head.compact {
  padding-bottom: 16px;
}

.modal-head > div {
  display: grid;
  gap: 3px;
}

.modal-head small {
  color: #717e89;
  letter-spacing: .18em;
  font-size: 8px;
  font-weight: 900;
}

.modal-head strong {
  letter-spacing: -.025em;
  font-size: 21px;
}

.modal-head p {
  color: #73808c;
  margin: 2px 0 0;
  font-size: 10px;
}

.modal-close {
  color: #89949e;
  background: #ffffff0b;
  border: 0;
  border-radius: 8px;
  width: 31px;
  height: 31px;
  padding: 0;
  font-size: 20px;
  font-weight: 400;
}

.modal-close:hover {
  color: #fff;
  background: #ffffff14;
}

.create-room-form {
  overflow: auto;
  padding: 15px 22px 8px;
}

.join-room-form {
  padding: 18px 22px 8px;
}

.create-room-form label, .join-room-form label {
  display: block;
}

.create-room-form label > span, .join-room-form label > span, .form-section-label {
  display: block;
  color: #6d7984;
  letter-spacing: .14em;
  margin-bottom: 6px;
  font-size: 8px;
  font-weight: 900;
}

.form-row.two-columns {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 10px;
}

.form-section {
  border-top: 1px solid #ffffff0e;
  margin-top: 15px;
  padding-top: 14px;
}

.privacy-picker {
  gap: 8px;
  margin: 0;
}

.privacy-option {
  background: #ffffff06;
  border-color: #ffffff12;
  border-radius: 9px;
  height: 52px;
}

.privacy-option strong {
  font-size: 10px;
}

.privacy-option small {
  font-size: 7px;
}

.privacy-option.active {
  box-shadow: none;
  background: #647eeb17;
  border-color: #6b87f252;
}

.room-pass-label {
  margin-top: 9px !important;
}

.create-map-picker {
  margin: 15px 0 0;
}

.create-map-head {
  align-items:  end;
  margin-bottom: 8px;
}

.create-map-head > div {
  display: grid;
  gap: 2px;
}

.create-map-head > div > span {
  color: #6d7984;
  letter-spacing: .14em;
  font-size: 8px;
  font-weight: 900;
}

.create-map-head > div > strong {
  color: #d9e0e6;
  font-size: 12px;
}

.create-map-head > small {
  max-width: 250px;
  color: #68747f !important;
  font-size: 7px !important;
}

.create-map-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-height: 280px;
  padding: 1px 2px 2px;
}

.map-pick-card {
  background: #0b1015;
  border-color: #ffffff12;
  border-radius: 9px;
  height: 128px;
}

.map-pick-card img, .map-pick-placeholder {
  width: 100%;
  height: 97px;
  inset: 0 0 31px;
}

.map-pick-card:after {
  background: linear-gradient(#0000, #05080bf0);
  inset: 49px 0 31px;
}

.map-pick-copy {
  gap: 1px;
  bottom: 7px;
  left: 9px;
  right: 9px;
}

.map-pick-copy strong {
  font-size: 9px;
}

.map-pick-copy small {
  font-size: 6px !important;
}

.map-pick-card.selected {
  border-color: #8092ffbf;
  box-shadow: inset 0 0 0 1px #8092ff57;
}

.map-pick-card.selected:before {
  content: "✓";
  position: absolute;
  z-index: 3;
  display: grid;
  color: #fff;
  background: #728cff;
  border-radius: 99px;
  place-items:  center;
  width: 20px;
  height: 20px;
  font-size: 10px;
  font-weight: 900;
  top: 7px;
  right: 7px;
  box-shadow: 0 3px 10px #0000004d;
}

.modal-actions {
  display: flex;
  border-top: 1px solid #ffffff0f;
  justify-content: flex-end;
  gap: 8px;
  padding: 13px 22px 18px;
}

.modal-actions button {
  min-width: 105px;
  height: 39px;
}

.modal-actions.single-primary {
  padding-top: 8px;
}

.modal-actions.single-primary .primary {
  width: 100%;
}

.secondary-modal-btn {
  color: #8b97a2;
  background: none;
  border-color: #ffffff14;
}

.create-room-btn {
  height: 39px;
  margin: 0;
}

.join-room-form label + label {
  margin-top: 12px;
}

.join-room-form .error, .create-room-form .error {
  min-height: 24px;
  padding-top: 7px;
}

@media (max-width: 760px) {
  .lobby-overlay {
    padding: 18px 12px;
  }

  .lobby-header-clean {
    align-items:  flex-start;
    gap: 16px;
  }

  .lobby-header-clean .lobby-create-trigger {
    align-self:  flex-end;
  }

  .lobby-main .room-browser {
    min-height: 420px;
  }

  .lobby-main .room-list {
    min-height: 310px;
    max-height: 58vh;
  }

  .lobby-main .room-card {
    grid-template-columns: minmax(150px, 1fr) 72px 58px;
    height: 68px;
  }

  .lobby-main .room-pop {
    justify-self: end;
  }

  .lobby-main .room-enter {
    display: none;
  }

  .form-row.two-columns {
    grid-template-columns: 1fr;
  }

  .create-map-list {
    grid-template-columns: 1fr 1fr;
    max-height: 270px;
  }

  .create-room-dialog {
    max-height: 92vh;
  }

  .modal-head, .create-room-form, .join-room-form, .modal-actions {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 480px) {
  .lobby-header-clean h1 {
    font-size: 36px;
  }

  .lobby-header-clean p {
    display: none;
  }

  .lobby-create-trigger {
    height: 39px;
    padding: 0 12px;
  }

  .create-map-list {
    grid-template-columns: 1fr;
  }

  .map-pick-card {
    height: 118px;
  }

  .map-pick-card img, .map-pick-placeholder {
    height: 87px;
  }

  .lobby-main .room-card {
    grid-template-columns: minmax(140px, 1fr) 62px 50px;
  }

  .lobby-main .room-map-thumb {
    width: 40px;
    height: 40px;
  }
}

.graphics-btn {
  position: fixed;
  z-index: 38;
  color: #d5d9dd;
  backdrop-filter: blur(8px);
  cursor: pointer;
  background: #0b0d10cc;
  border: 1px solid #ffffff20;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  font: 700 16px / 1 sans-serif;
  top: 12px;
  right: 12px;
  box-shadow: 0 6px 18px #0005;
}

.graphics-btn:hover {
  color: #fff;
  background: #171b20;
}

.graphics-modal {
  position: fixed;
  z-index: 80;
  display: grid;
  backdrop-filter: blur(6px);
  background: #030405b8;
  place-items:  center;
  inset: 0;
}

.graphics-dialog {
  color: #d9dde0;
  overflow: hidden;
  background: #0d1013;
  border: 1px solid #32373c;
  border-radius: 12px;
  width: min(390px, 100vw - 28px);
  box-shadow: 0 28px 90px #000b;
}

.graphics-dialog header {
  display: flex;
  border-bottom: 1px solid #282d31;
  justify-content: space-between;
  align-items:  center;
  height: 58px;
  padding: 0 15px;
}

.graphics-dialog header > div {
  display: grid;
  gap: 2px;
}

.graphics-dialog header small {
  letter-spacing: .16em;
  color: #7e8790;
  font-size: 8px;
  font-weight: 900;
}

.graphics-dialog header strong {
  font-size: 15px;
}

.graphics-dialog header button {
  color: #aeb5ba;
  background: #161a1e;
  border: 1px solid #33393e;
  border-radius: 7px;
  width: 31px;
  height: 31px;
  font-size: 17px;
}

.graphics-body {
  display: grid;
  gap: 12px;
  padding: 15px;
}

.graphics-body > label:not(.graphics-check) {
  display: grid;
  grid-template-columns: 1fr 145px;
  align-items:  center;
  gap: 12px;
}

.graphics-body label > span {
  color: #aeb4b9;
  font-size: 10px;
}

.graphics-body select {
  color: #d0d5d9;
  background: #15191d;
  border: 1px solid #343a40;
  border-radius: 6px;
  height: 34px;
  padding: 0 8px;
}

.graphics-check {
  display: flex;
  background: #111519;
  border: 1px solid #2b3035;
  border-radius: 7px;
  align-items:  center;
  gap: 9px;
  padding: 10px;
}

.graphics-check input {
  accent-color: #8ba0ff;
}

.graphics-body > small {
  color: #697179;
  font-size: 8px;
  line-height: 1.5;
}

.graphics-dialog footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #282d31;
  gap: 8px;
  padding: 11px 15px;
}

.graphics-dialog footer button {
  color: #aeb5ba;
  background: #15191d;
  border: 1px solid #343a40;
  border-radius: 6px;
  height: 34px;
  font-size: 9px;
  font-weight: 800;
}

.graphics-dialog footer #graphics-done {
  color: #17191b;
  background: #e5e8eb;
  border-color: #eef1f3;
}

.graphics-modal.hidden {
  display: none;
}

@media (max-width: 640px) {
  .graphics-btn {
    top: 8px;
    right: 8px;
  }
}

.ui-icon {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  flex: none;
  width: 18px;
  height: 18px;
}

button.icon-only {
  display: inline-grid;
  place-items:  center;
  padding: 0;
  line-height: 0;
}

button.icon-text {
  display: inline-flex;
  justify-content: center;
  align-items:  center;
  gap: 7px;
}

button.icon-text .ui-icon {
  width: 14px;
  height: 14px;
}

.icon-button .ui-icon, .modal-close .ui-icon, .graphics-btn .ui-icon {
  width: 17px;
  height: 17px;
}

.lobby-create-trigger span {
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.peek-top {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 132px minmax(150px, 1fr);
  grid-template-rows: 35px 37px;
  grid-template-areas: "props score hunters" ". timer .";
  align-items:  center;
  width: min(780px, 100vw - 180px);
  height: 78px;
  padding: 0;
  top: 18px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.peek-props {
  grid-area: props;
  justify-self: end;
  padding-right: 28px;
}

.peek-score {
  grid-area: score;
  place-self:  center;
  font-size: 31px;
  line-height: 1;
}

.peek-hunters {
  grid-area: hunters;
  justify-self: start;
  padding-left: 28px;
}

.peek-team {
  align-self:  center;
  font-size: 27px;
  line-height: 1;
}

.peek-timer {
  grid-area: timer;
  display: grid;
  text-align: center;
  place-self:  start center;
  justify-items: center;
  margin-top: 1px;
}

.peek-timer strong {
  font-size: 22px;
  line-height: 1;
}

.peek-timer small {
  letter-spacing: .17em;
  margin-top: 4px;
  font-size: 7px;
  line-height: 1;
}

.skills {
  top: 50%;
  left: 26px;
  right: auto;
  transform: translateY(-12%);
}

.radar-reading {
  left: 108px;
  right: auto;
}

.graphics-btn, .icon-button, .modal-close {
  justify-content: center;
  align-items:  center;
}

.graphics-dialog header button {
  display: inline-grid;
  place-items:  center;
}

.room-mini button.icon-text {
  gap: 5px;
}

.room-mini button.icon-text .ui-icon {
  width: 11px;
  height: 11px;
}

@media (max-width: 900px) {
  .peek-top {
    grid-template-columns: minmax(120px, 1fr) 108px minmax(120px, 1fr);
    width: min(650px, 100vw - 120px);
  }

  .peek-team {
    font-size: 22px;
  }

  .peek-score {
    font-size: 26px;
  }

  .peek-timer strong {
    font-size: 19px;
  }

  .peek-props {
    padding-right: 18px;
  }

  .peek-hunters {
    padding-left: 18px;
  }

  .skills {
    left: 10px;
    right: auto;
  }

  .radar-reading {
    left: 88px;
    right: auto;
  }
}

@media (max-width: 760px) {
  .peek-top {
    grid-template-columns: minmax(82px, 1fr) 82px minmax(82px, 1fr);
    grid-template-rows: 28px 30px;
    width: calc(100vw - 88px);
    height: 62px;
    top: 9px;
  }

  .peek-team {
    font-size: 15px;
  }

  .peek-score {
    gap: 4px;
    font-size: 19px;
  }

  .peek-timer strong {
    font-size: 16px;
  }

  .peek-timer small {
    margin-top: 3px;
    font-size: 6px;
  }

  .peek-props {
    padding-right: 8px;
  }

  .peek-hunters {
    padding-left: 8px;
  }

  .skills {
    inset: auto auto 72px 8px;
    transform: none;
  }

  .radar-reading {
    left: 70px;
    right: auto;
  }
}

.character-section {
  margin-top: 2px;
}

.character-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}

.character-picker.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.character-option {
  color: #7d8994;
  display: grid;
  background: #10151a;
  border: 1px solid #2b333b;
  border-radius: 7px;
  place-items:  center;
  gap: 2px;
  min-width: 0;
  height: 48px;
  padding: 5px;
  font-size: 7px;
}

.character-option strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  font-size: 7px;
}

.character-option i {
  display: grid;
  color: #aab5bf;
  background: #252e37;
  border-radius: 50%;
  place-items:  center;
  width: 18px;
  height: 18px;
  font-style: normal;
  font-weight: 900;
}

.character-option.active {
  color: #eef2ff;
  background: #1a2238;
  border-color: #657cf0;
  box-shadow: inset 0 0 0 1px #657cf044;
}

.join-character-block, .join-mode-block {
  display: grid;
  gap: 6px;
}

.join-character-block > span, .join-mode-block > span {
  letter-spacing: .13em;
  color: #66717b;
  font-size: 7px;
  font-weight: 900;
}

.join-mode-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.join-mode-picker button {
  color: #77838e;
  display: grid;
  text-align: left;
  background: #10151a;
  border: 1px solid #29323b;
  border-radius: 7px;
  align-content:  center;
  gap: 2px;
  height: 48px;
  padding: 0 9px;
}

.join-mode-picker button strong {
  font-size: 9px;
}

.join-mode-picker button small {
  color: #59656f;
  font-size: 7px;
}

.join-mode-picker button.active {
  color: #edf1ff;
  background: #192139;
  border-color: #6077df;
}

.join-mode-picker button.active small {
  color: #8fa0d5;
}

.blind-card .blind-countdown {
  color: #fff;
  text-shadow: 0 8px 35px #000;
  font-variant-numeric: tabular-nums;
  font-size: 72px;
  line-height: .95;
}

.hiding-countdown {
  position: fixed;
  z-index: 44;
  display: grid;
  pointer-events: none;
  background: #080b0ecc;
  border: 1px solid #fff2;
  border-radius: 10px;
  place-items:  center;
  gap: 0;
  min-width: 86px;
  padding: 7px 13px;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 35px #0006;
}

.hiding-countdown small {
  letter-spacing: .14em;
  color: #ff8ae6;
  font-size: 7px;
  font-weight: 900;
}

.hiding-countdown strong {
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.hiding-countdown.urgent {
  animation: hidingTick .55s ease-out;
}

@keyframes hidingTick {
  0% {
    transform: translateX(-50%)scale(1.28);
  }

  100% {
    transform: translateX(-50%)scale(1);
  }
}

.scoreboard {
  pointer-events: auto;
}

.scoreboard-footer {
  display: flex;
  background: #ffffff05;
  border-top: 1px solid #ffffff12;
  justify-content: space-between;
  align-items:  center;
  gap: 12px;
  min-height: 60px;
  padding: 9px 20px;
}

.scoreboard-footer > div {
  display: grid;
  gap: 2px;
}

.scoreboard-footer strong {
  font-size: 9px;
}

.scoreboard-footer small {
  color: #697581;
  font-size: 7px;
}

.scoreboard-footer button {
  color: #b9c6d3;
  background: #17202b;
  border: 1px solid #48576b;
  border-radius: 6px;
  height: 31px;
  padding: 0 12px;
  font-size: 8px;
  font-weight: 850;
}

.scoreboard-footer button.spectating {
  color: #f0d9f6;
  background: #2a1a30;
  border-color: #815c8e;
}

.role-dot.spectator {
  background: #aa7ac1;
}

.score-role.spectator {
  color: #c79bd8;
}

.spectator-controls {
  position: fixed;
  z-index: 58;
  display: grid;
  grid-template-columns: 34px auto 34px;
  background: #080b0edb;
  border: 1px solid #ffffff20;
  border-radius: 10px;
  align-items:  center;
  gap: 8px;
  padding: 7px 9px;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 35px #0007;
}

.spectator-controls button {
  color: #d8dee4;
  background: #141a20;
  border: 1px solid #36424e;
  border-radius: 6px;
  width: 34px;
  height: 30px;
  font-size: 20px;
}

.spectator-controls div {
  display: grid;
  text-align: center;
  min-width: 130px;
}

.spectator-controls small {
  letter-spacing: .16em;
  color: #8d73a1;
  font-size: 6px;
  font-weight: 900;
}

.spectator-controls strong {
  font-size: 10px;
}

.spectator-controls > span {
  grid-column: 1 / -1;
  text-align: center;
  color: #59636d;
  font-size: 6px;
}

.onboarding {
  position: fixed;
  z-index: 120;
  display: grid;
  backdrop-filter: blur(8px);
  background: #020406b8;
  place-items:  center;
  inset: 0;
}

.onboarding section {
  background: #0b1015;
  border: 1px solid #343e47;
  border-radius: 13px;
  width: min(520px, 100vw - 30px);
  padding: 18px;
  box-shadow: 0 35px 100px #000b;
}

.onboarding header {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.onboarding header small {
  letter-spacing: .16em;
  color: #7788e9;
  font-size: 7px;
  font-weight: 900;
}

.onboarding header strong {
  font-size: 20px;
}

.onboarding-steps {
  display: grid;
  gap: 7px;
}

.onboarding-steps article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  background: #10161c;
  border: 1px solid #202a33;
  border-radius: 8px;
  align-items:  start;
  gap: 9px;
  padding: 9px;
}

.onboarding-steps article > b {
  display: grid;
  color: #cdd6ff;
  background: #242f52;
  border-radius: 7px;
  place-items:  center;
  width: 26px;
  height: 26px;
  font-size: 10px;
}

.onboarding-steps article div {
  display: grid;
  gap: 2px;
}

.onboarding-steps strong {
  font-size: 10px;
}

.onboarding-steps p {
  color: #7c8994;
  margin: 0;
  font-size: 8px;
  line-height: 1.45;
}

.onboarding > section > button {
  color: #12161b;
  background: #e6eaf0;
  border: 0;
  border-radius: 7px;
  width: 100%;
  height: 34px;
  margin-top: 13px;
  font-size: 9px;
  font-weight: 900;
}

@media (max-width: 700px) {
  .character-picker, .character-picker.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scoreboard-footer {
    padding: 8px 12px;
  }
}

.skill.activated {
  animation: skillActivated .42s ease-out;
}

@keyframes skillActivated {
  0% {
    transform: scale(1);
    box-shadow: 0 0 #8bdcff00;
  }

  28% {
    transform: scale(1.08);
    box-shadow: 0 0 0 6px #8bdcff28;
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 14px #8bdcff00;
  }
}

.lobby-overlay {
  overflow: auto;
  background: radial-gradient(circle at 24% 18%, #3c3150 0, #171c24 30%, #090d12 72%);
  padding: 22px;
}

.lobby-hub-shell {
  display: grid;
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.lobby-hub-header {
  display: flex;
  justify-content: space-between;
  align-items:  end;
  gap: 24px;
  min-height: 86px;
  padding: 0 4px;
}

.lobby-hub-header .lobby-brand-copy small {
  letter-spacing: .22em;
  color: #8a9cf3;
  font-size: 7px;
  font-weight: 900;
}

.lobby-hub-header h1 {
  letter-spacing: -.065em;
  margin: 7px 0 5px;
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: .88;
}

.lobby-hub-header p {
  color: #788591;
  margin: 0;
  font-size: 10px;
}

.lobby-profile-status {
  display: grid;
  justify-items: end;
  gap: 2px;
  padding-bottom: 4px;
}

.lobby-profile-status span {
  letter-spacing: .17em;
  color: #58636e;
  font-size: 6px;
  font-weight: 900;
}

.lobby-profile-status strong {
  color: #c9d2dc;
  font-size: 11px;
}

.lobby-hub-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  position: relative;
  gap: 14px;
}

.character-hub {
  display: grid;
  grid-template-columns: minmax(330px, .88fr) minmax(430px, 1.12fr);
  overflow: hidden;
  background: linear-gradient(135deg, #13181ff5, #080c10f0);
  border-color: #ffffff14;
  border-radius: 18px;
  min-height: 610px;
  box-shadow: 0 35px 100px #0007;
}

.character-stage {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 34%, #4a4463 0, #272535 34%, #11161d 74%);
  min-height: 610px;
}

.character-stage:before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(#0000, #080c11cc);
  height: 42%;
  inset: auto -12% 0;
}

.character-stage-glow {
  position: absolute;
  filter: blur(24px);
  background: #9a81ff22;
  border-radius: 50%;
  width: 290px;
  height: 290px;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 110px #987bff3b;
}

#lobby-character-canvas {
  position: absolute;
  z-index: 2;
  cursor: grab;
  touch-action: none;
  width: 100%;
  height: 100%;
  inset: 0;
}

#lobby-character-canvas:active {
  cursor: grabbing;
}

.character-pedestal {
  position: absolute;
  z-index: 1;
  background: radial-gradient(#68627a 0, #373541 52%, #161a20 72%);
  border-radius: 50%;
  width: 210px;
  height: 58px;
  bottom: 62px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 22px 45px #0009, inset 0 7px 12px #ffffff12;
}

.character-stage-copy {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: auto auto;
  align-items:  center;
  gap: 3px 8px;
  bottom: 20px;
  left: 22px;
}

.character-stage-copy small {
  grid-column: 1 / -1;
  letter-spacing: .18em;
  color: #7d8994;
  font-size: 6px;
  font-weight: 900;
}

.character-stage-copy strong {
  font-size: 20px;
}

.character-unlock {
  letter-spacing: .11em;
  border-radius: 999px;
  align-self:  center;
  padding: 3px 6px;
  font-size: 6px;
  font-weight: 950;
}

.character-unlock.free {
  color: #7ae7ad;
  background: #4fb8871c;
  border: 1px solid #62d79b4d;
}

.character-unlock.locked {
  color: #efb868;
  background: #bd874519;
  border: 1px solid #d69a4b42;
}

.character-profile-panel {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 19px;
  min-width: 0;
  padding: 26px;
}

.lobby-name-field {
  display: grid;
  gap: 7px;
}

.lobby-name-field > span, .character-roster-head span {
  letter-spacing: .17em;
  color: #76828e;
  font-size: 7px;
  font-weight: 900;
}

.lobby-name-field input {
  color: #fff;
  outline: none;
  background: #090d12b5;
  border: 1px solid #ffffff18;
  border-radius: 10px;
  height: 48px;
  padding: 0 14px;
  transition: all .16s;
  font-size: 15px;
  font-weight: 800;
}

.lobby-name-field input:focus {
  border-color: #7e8ff0;
  box-shadow: 0 0 0 3px #7085e91b;
}

.character-roster-head {
  display: flex;
  justify-content: space-between;
  align-items:  end;
  gap: 14px;
}

.character-roster-head div {
  display: grid;
  gap: 3px;
}

.character-roster-head strong {
  font-size: 14px;
}

.character-roster-head > small {
  text-align: right;
  color: #59646f;
  max-width: 180px;
  font-size: 7px;
  line-height: 1.35;
}

.character-roster {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: auto;
  align-content:  start;
  gap: 8px;
  padding-right: 2px;
}

.roster-card {
  color: #8996a2;
  display: grid;
  grid-template-rows: 1fr auto;
  text-align: left;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #151c24, #0d1218);
  border: 1px solid #26313b;
  border-radius: 11px;
  gap: 6px;
  min-width: 0;
  height: 90px;
  padding: 9px;
  transition: transform .14s, border-color .14s, background .14s;
}

.roster-card:before {
  content: "";
  position: absolute;
  background: var(--character-accent, #7f8da0);
  opacity: .12;
  filter: blur(2px);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  top: -25px;
  right: -18px;
}

.roster-card:hover:not(:disabled) {
  border-color: #536476;
  transform: translateY(-2px);
}

.roster-card.active {
  background: linear-gradient(150deg, #252743, #121724);
  border-color: #8a91ff;
  box-shadow: inset 0 0 0 1px #838bff45, 0 10px 30px #0003;
}

.roster-card:disabled {
  opacity: .52;
  cursor: not-allowed;
}

.roster-avatar {
  display: grid;
  background: linear-gradient(145deg, var(--character-accent, #738195), #202731);
  color: #fff;
  border: 1px solid #ffffff17;
  border-radius: 11px;
  place-items:  center;
  width: 34px;
  height: 34px;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 8px 20px #0004;
}

.roster-card-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.roster-card-copy strong {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #cbd4dc;
  font-size: 8px;
}

.roster-card-copy small {
  color: #64707a;
  font-size: 6px;
}

.roster-card.active .roster-card-copy strong {
  color: #fff;
}

.roster-lock {
  position: absolute;
  letter-spacing: .1em;
  color: #aab4be;
  background: #070a0dcc;
  border: 1px solid #ffffff16;
  border-radius: 999px;
  padding: 2px 5px;
  font-size: 5px;
  font-weight: 900;
  top: 7px;
  right: 7px;
}

.lobby-play-row {
  display: flex;
  border-top: 1px solid #ffffff0d;
  justify-content: space-between;
  align-items:  center;
  gap: 14px;
  padding-top: 15px;
}

.selected-character-summary {
  display: flex;
  align-items:  center;
  gap: 9px;
  min-width: 0;
}

.selected-character-summary > span {
  background: var(--selected-character-accent, #7987a0);
  border-radius: 9px;
  width: 26px;
  height: 26px;
  box-shadow: 0 0 0 4px #ffffff08;
}

.selected-character-summary div {
  display: grid;
  gap: 1px;
}

.selected-character-summary small {
  letter-spacing: .14em;
  color: #596672;
  font-size: 6px;
  font-weight: 900;
}

.selected-character-summary strong {
  font-size: 10px;
}

.lobby-play-btn {
  border-radius: 9px;
  min-width: 190px;
  height: 46px;
  padding: 0 17px;
  font-size: 10px;
  font-weight: 900;
}

.lobby-room-drawer {
  position: absolute;
  z-index: 7;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  opacity: 0;
  pointer-events: none;
  background: #0b1015f5;
  border-radius: 18px;
  width: min(510px, 100%);
  height: 610px;
  transition: transform .24s cubic-bezier(.2,.75,.2,1), opacity .18s;
  top: 0;
  right: 0;
  transform: translateX(calc(100% + 28px));
  box-shadow: -28px 0 80px #0009;
}

.lobby-hub-shell.rooms-open .lobby-room-drawer {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.lobby-hub-shell.rooms-open .character-hub {
  filter: saturate(.72) brightness(.68);
  transform-origin: left center;
  transition: all .24s;
  transform: scale(.985);
}

.room-browser-actions {
  display: flex;
  gap: 6px;
}

.room-browser-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  background: #ffffff05;
  border: 1px solid #ffffff0d;
  border-radius: 8px;
  align-items:  center;
  gap: 1px 8px;
  height: 48px;
  margin: 0 14px 8px;
  padding: 7px 10px;
}

.room-browser-profile span {
  color: #66717b;
  letter-spacing: .1em;
  font-size: 6px;
}

.room-browser-profile strong {
  font-size: 9px;
}

.room-browser-profile em {
  grid-column: 2;
  color: #8794a0;
  font-size: 7px;
  font-style: normal;
}

.lobby-room-drawer .lobby-create-trigger {
  justify-content: center;
  height: 40px;
  margin: 10px 14px 14px;
}

.lobby-modal-profile {
  display: grid;
  background: #ffffff05;
  border: 1px solid #ffffff0d;
  border-radius: 8px;
  gap: 2px;
  margin-bottom: 4px;
  padding: 9px 11px;
}

.lobby-modal-profile span {
  letter-spacing: .13em;
  color: #697580;
  font-size: 6px;
  font-weight: 900;
}

.lobby-modal-profile strong {
  font-size: 9px;
}

.profile-proxy-field, .legacy-character-picker {
  display: none !important;
}

.onboarding {
  backdrop-filter: blur(10px);
  background: radial-gradient(circle at 50% 28%, #283044cc, #06080ce8 65%);
}

.onboarding-game {
  overflow: hidden;
  min-height: 500px;
  background: #0a0f15 !important;
  border: 1px solid #ffffff1c !important;
  border-radius: 18px !important;
  width: min(820px, 100vw - 30px) !important;
  padding: 0 !important;
  box-shadow: 0 40px 120px #000d !important;
}

.onboarding-game > header {
  border-bottom: 1px solid #ffffff0e;
  justify-content: space-between;
  align-items:  center;
  height: 70px;
  padding: 16px 20px;
  display: flex !important;
  margin: 0 !important;
}

.onboarding-game > header > div {
  display: grid;
  gap: 2px;
}

.onboarding-game > header small {
  letter-spacing: .18em;
  color: #8999f2 !important;
  font-size: 6px !important;
}

.onboarding-game > header strong {
  font-size: 17px !important;
}

.onboarding-game > header button {
  color: #697681;
  background: none;
  border: 0;
  font-size: 8px;
  font-weight: 850;
}

.onboarding-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #070a0d;
  gap: 3px;
  height: 3px;
}

.onboarding-progress span {
  background: #252c33;
}

.onboarding-progress span.active {
  background: #8d92ff;
  box-shadow: 0 0 16px #858bff;
}

.onboarding-slides {
  min-height: 360px;
}

.onboarding-slide {
  display: none;
  grid-template-columns: 44% 56%;
  min-height: 360px;
}

.onboarding-slide.active {
  display: grid;
}

.onboarding-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  background: radial-gradient(circle, #4b4565 0, #252736 45%, #11161d 78%);
  place-items:  center;
}

.onboarding-hero:after {
  content: "";
  position: absolute;
  filter: blur(9px);
  background: #0006;
  border-radius: 50%;
  width: 220px;
  height: 40px;
  bottom: 48px;
}

.tutorial-badge {
  position: absolute;
  letter-spacing: .15em;
  color: #d9dee4;
  background: #0b0f14b8;
  border: 1px solid #ffffff20;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 6px;
  font-weight: 900;
  top: 16px;
  left: 16px;
}

.tutorial-object, .tutorial-crosshair, .tutorial-tab {
  position: relative;
  z-index: 2;
  display: grid;
  color: #fff;
  text-shadow: 0 10px 35px #0008;
  place-items:  center;
  font-weight: 950;
}

.tutorial-object {
  background: linear-gradient(145deg, #d5a96c, #745b3b);
  border-radius: 15px;
  width: 110px;
  height: 145px;
  font-size: 48px;
  transform: rotate(-5deg);
  box-shadow: 0 20px 50px #0007;
}

.tutorial-crosshair {
  color: #8ed2ff;
  border: 3px solid #8ed2ff;
  border-radius: 50%;
  width: 125px;
  height: 125px;
  font-size: 70px;
}

.tutorial-tab {
  color: #c9c4ff;
  background: #22223b;
  border: 2px solid #9c92ff;
  border-radius: 13px;
  width: 130px;
  height: 70px;
  font-size: 23px;
}

.tutorial-clones {
  position: relative;
  z-index: 2;
  width: 220px;
  height: 170px;
}

.tutorial-clones i {
  position: absolute;
  background: linear-gradient(145deg, #b18462, #4d3d31);
  border-radius: 10px;
  width: 68px;
  height: 100px;
  bottom: 5px;
  box-shadow: 0 16px 35px #0007;
}

.tutorial-clones i:first-child {
  left: 10px;
  transform: rotate(-8deg);
}

.tutorial-clones i:nth-child(2) {
  bottom: 32px;
  left: 76px;
  transform: scale(1.15);
}

.tutorial-clones i:nth-child(3) {
  right: 8px;
  transform: rotate(8deg);
}

.onboarding-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:  flex-start;
  padding: 38px 36px;
}

.onboarding-copy > small {
  letter-spacing: .17em;
  color: #8a96a2;
  font-size: 7px;
  font-weight: 900;
}

.onboarding-copy > strong {
  letter-spacing: -.035em;
  margin-top: 8px;
  font-size: 29px;
  line-height: 1.02;
}

.onboarding-copy > p {
  color: #8996a2;
  max-width: 380px;
  margin: 13px 0 20px;
  font-size: 11px;
  line-height: 1.6;
}

.onboarding-copy kbd, .tutorial-action kbd {
  display: inline-grid;
  color: #fff;
  background: #151b22;
  border: 1px solid #ffffff2b;
  border-bottom-width: 3px;
  border-radius: 6px;
  place-items:  center;
  min-width: 30px;
  height: 26px;
  padding: 0 7px;
  font: 900 9px inherit;
}

.tutorial-action {
  display: flex;
  color: #c4cdd5;
  background: #ffffff06;
  border: 1px solid #ffffff12;
  border-radius: 9px;
  align-items:  center;
  gap: 9px;
  min-height: 46px;
  padding: 8px 11px;
  font-size: 8px;
  font-weight: 900;
}

.tutorial-action.dual {
  gap: 15px;
}

.tutorial-action.dual > span {
  display: flex;
  align-items:  center;
  gap: 6px;
}

.onboarding-game > footer {
  display: grid;
  grid-template-columns: 110px 1fr 130px;
  background: #080c11;
  border-top: 1px solid #ffffff0e;
  align-items:  center;
  height: 66px;
  padding: 12px 18px;
}

.onboarding-game > footer > span {
  text-align: center;
  color: #66717c;
  letter-spacing: .12em;
  font-size: 7px;
}

.onboarding-game > footer button {
  color: #a7b2bc;
  background: #121820;
  border: 1px solid #313b45;
  border-radius: 7px;
  height: 36px;
  font-size: 8px;
  font-weight: 900;
}

.onboarding-game > footer button:disabled {
  opacity: .28;
}

.onboarding-game > footer button.primary {
  color: #fff;
  background: #7179dd;
  border-color: #777fe3;
}

.onboarding-game > footer #onboarding-next, .onboarding-game > footer #onboarding-done {
  grid-column: 3;
}

@media (max-width: 850px) {
  .character-hub {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .character-stage {
    min-height: 390px;
  }

  .character-profile-panel {
    padding: 18px;
  }

  .character-roster {
    grid-template-columns: repeat(4, minmax(76px, 1fr));
  }

  .lobby-room-drawer {
    height: 100%;
    min-height: 610px;
  }

  .onboarding-slide {
    grid-template-columns: 1fr;
  }

  .onboarding-hero {
    min-height: 210px;
  }

  .onboarding-copy {
    padding: 24px;
  }

  .onboarding-copy > strong {
    font-size: 24px;
  }

  .onboarding-slides {
    min-height: 500px;
  }
}

@media (max-width: 560px) {
  .lobby-overlay {
    padding: 12px;
  }

  .lobby-hub-header {
    align-items:  flex-start;
  }

  .lobby-profile-status {
    display: none;
  }

  .character-stage {
    min-height: 330px;
  }

  .character-roster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lobby-play-row {
    flex-direction: column;
    align-items: stretch;
  }

  .lobby-play-btn {
    width: 100%;
  }

  .character-roster-head > small {
    display: none;
  }

  .lobby-room-drawer {
    position: fixed;
    width: auto;
    height: auto;
    min-height: 0;
    inset: 8px;
  }

  .onboarding-game {
    min-height: calc(100vh - 22px);
  }

  .onboarding-slide.active {
    display: flex;
    flex-direction: column;
  }

  .onboarding-hero {
    min-height: 230px;
  }

  .onboarding-copy {
    padding: 22px;
  }

  .onboarding-game > footer {
    grid-template-columns: 82px 1fr 105px;
  }
}

.lobby-hub-header {
  align-items:  center;
  min-height: 96px;
  padding: 2px 6px 0;
}

.lobby-hub-header .lobby-brand-copy h1 {
  margin: 0 0 8px;
  font-size: clamp(42px, 5.6vw, 68px);
  line-height: .86;
}

.lobby-hub-header .lobby-brand-copy p {
  color: #929eaa;
  max-width: 520px;
  font-size: 11px;
  line-height: 1.45;
}

.lobby-profile-status {
  padding: 8px 0 0;
}

.lobby-room-drawer {
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(145deg, #0e141bfb, #080c11fb);
  border: 1px solid #ffffff16;
  border-radius: 18px;
  width: 100%;
  height: 610px;
  transition: transform .22s cubic-bezier(.2,.75,.2,1), opacity .18s, visibility 0s linear .22s;
  inset: 0;
  transform: translateX(28px)scale(.992);
  box-shadow: 0 32px 100px #0009;
}

.lobby-hub-shell.rooms-open .lobby-room-drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
  transform: none;
}

.lobby-hub-shell.rooms-open .character-hub {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: none;
  transition: transform .22s cubic-bezier(.2,.75,.2,1), opacity .16s, visibility 0s linear .22s;
  transform: translateX(-28px)scale(.992);
}

.room-browser-head {
  background: linear-gradient(#ffffff04, #0000);
  gap: 18px;
  height: auto;
  min-height: 94px;
  padding: 19px 22px;
}

.room-browser-title {
  display: grid;
  gap: 3px;
}

.room-browser-title small {
  color: #7e8af0 !important;
  letter-spacing: .18em !important;
  font-size: 6px !important;
}

.room-browser-title strong {
  letter-spacing: -.025em;
  font-size: 21px !important;
}

.room-browser-title p {
  color: #71808d;
  margin: 2px 0 0;
  font-size: 9px;
  line-height: 1.45;
}

.room-browser-actions {
  display: flex;
  align-items:  center;
  gap: 7px;
}

.room-create-cta {
  display: flex;
  white-space: nowrap;
  border-radius: 8px;
  align-items:  center;
  gap: 7px;
  height: 38px;
  padding: 0 14px;
  font-size: 9px;
  font-weight: 900;
}

.room-create-cta .ui-icon {
  width: 13px;
  height: 13px;
}

.room-browser-actions .icon-button {
  background: #ffffff05;
  border: 1px solid #ffffff10;
  width: 38px;
  height: 38px;
}

.room-browser-profile {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  background: #ffffff04;
  border: 1px solid #ffffff0c;
  border-radius: 10px;
  justify-content: start;
  column-gap: 8px;
  width: max-content;
  min-width: 250px;
  height: 50px;
  margin: 12px 20px 4px;
  padding: 7px 11px 7px 42px;
}

.room-browser-profile:before {
  content: "";
  position: absolute;
  background: linear-gradient(145deg, #8178c8, #303849);
  border-radius: 9px;
  width: 28px;
  height: 28px;
  top: 10px;
  left: 10px;
  box-shadow: inset 0 0 0 1px #ffffff16;
}

.room-browser-profile span {
  grid-column: 1 / -1;
  letter-spacing: .15em;
  color: #5f6a76;
  font-size: 5px;
}

.room-browser-profile strong {
  font-size: 9px;
}

.room-browser-profile em {
  grid-column: auto;
  color: #7e8994;
  font-size: 8px;
}

.room-browser-profile em:before {
  content: "· ";
  color: #4f5963;
}

.lobby-room-drawer .room-list {
  min-height: 0;
  max-height: none;
  padding: 10px 18px 14px;
}

.lobby-room-drawer .room-card {
  grid-template-columns: minmax(260px, 1fr) 120px 94px 88px;
  background: linear-gradient(100deg, #ffffff035, transparent);
  border: 1px solid #ffffff0d;
  border-radius: 11px;
  gap: 14px;
  height: 82px;
  margin: 7px 0;
  padding: 0 15px;
  box-shadow: 0 8px 22px #0002;
}

.lobby-room-drawer .room-card:hover {
  background: linear-gradient(100deg, #727cff12, #ffffff04);
  border-color: #8188ee42;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px #0004;
}

.lobby-room-drawer .room-map-thumb {
  border-color: #ffffff13;
  border-radius: 9px;
  width: 56px;
  height: 56px;
}

.lobby-room-drawer .room-title {
  gap: 12px;
}

.lobby-room-drawer .room-title-copy strong {
  color: #eef2f5;
  font-size: 13px;
}

.lobby-room-drawer .room-title-copy em {
  color: #87939e;
  margin-top: 3px;
  font-size: 8px;
}

.lobby-room-drawer .room-title-copy small {
  color: #58636e;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
  font-size: 6px;
}

.lobby-room-drawer .room-phase {
  display: inline-flex;
  letter-spacing: .08em;
  background: #ffffff04;
  border: 1px solid #ffffff0c;
  border-radius: 999px;
  justify-self: start;
  align-items:  center;
  gap: 6px;
  padding: 5px 8px;
  font-size: 7px;
}

.room-phase i {
  background: currentColor;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  box-shadow: 0 0 9px;
}

.lobby-room-drawer .room-pop {
  color: #73808b;
  justify-self: start;
  font-size: 8px;
}

.lobby-room-drawer .room-pop b {
  font-size: 15px;
}

.lobby-room-drawer .room-enter {
  color: #aeb8c1;
  letter-spacing: .08em;
  background: #ffffff06;
  border-radius: 7px;
  padding: 7px 9px;
  font-size: 7px;
}

.lobby-room-drawer .room-card:hover .room-enter {
  color: #dce1ff;
  background: #727be41c;
}

.lobby-room-drawer .room-empty {
  display: flex;
  color: #63707c;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: 5px;
  height: 100%;
  min-height: 310px;
}

.room-empty:before {
  content: "+";
  display: grid;
  color: #7b86e9;
  background: #ffffff04;
  border: 1px solid #ffffff0f;
  border-radius: 15px;
  place-items:  center;
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
  font-size: 23px;
  font-weight: 300;
}

.room-empty strong {
  color: #bdc6ce;
  font-size: 13px;
}

.room-empty span {
  color: #67737e;
  max-width: 310px;
  font-size: 9px;
  line-height: 1.45;
}

.lobby-room-drawer .room-browser-foot {
  color: #59646f;
  background: #06090d66;
  height: 43px;
  padding: 0 20px;
}

.create-room-dialog {
  background: linear-gradient(145deg, #121820, #080c11);
  border-color: #ffffff14;
  border-radius: 18px;
  width: min(900px, 100vw - 28px);
  max-height: min(88vh, 760px);
}

.create-room-dialog .modal-head {
  background: linear-gradient(#ffffff04, #0000);
  padding: 22px 25px 19px;
}

.create-room-dialog .modal-head small {
  color: #828ff0;
}

.create-room-dialog .modal-head strong {
  font-size: 23px;
}

.create-room-dialog .modal-head p {
  color: #7d8994;
  font-size: 10px;
}

.create-room-layout {
  grid-template-columns: minmax(300px, .82fr) minmax(390px, 1.18fr);
  display: grid !important;
  overflow: auto !important;
  padding: 0 !important;
}

.create-room-settings {
  border-right: 1px solid #ffffff0c;
  padding: 22px 24px 16px;
}

.create-room-map-panel {
  background: linear-gradient(145deg, #ffffff025, transparent);
  padding: 22px 24px 20px;
}

.create-room-settings .lobby-modal-profile {
  position: relative;
  background: linear-gradient(100deg, #777be811, #0000);
  border-color: #858aef25;
  border-radius: 10px;
  justify-content: center;
  min-height: 56px;
  margin: 0 0 19px;
  padding: 10px 12px 10px 50px;
}

.create-room-settings .lobby-modal-profile:before {
  content: "";
  position: absolute;
  background: linear-gradient(145deg, #897be0, #313847);
  border-radius: 10px;
  width: 32px;
  height: 32px;
  top: 11px;
  left: 11px;
  box-shadow: inset 0 0 0 1px #ffffff18;
}

.create-room-settings .lobby-modal-profile strong {
  color: #dfe4e8;
  font-size: 10px;
}

.room-name-field {
  gap: 7px;
  display: grid !important;
}

.room-name-field > span {
  margin: 0 !important;
}

.room-name-field input {
  height: 50px;
  font-weight: 750;
  background: #070b10 !important;
  border-radius: 10px !important;
  padding: 0 14px !important;
  font-size: 12px !important;
}

.room-name-field input::placeholder {
  color: #4f5a65;
  font-weight: 600;
}

.privacy-section {
  margin-top: 22px !important;
  padding-top: 18px !important;
}

.privacy-picker {
  grid-template-columns: 1fr;
  gap: 8px;
}

.privacy-option {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  text-align: left;
  border-radius: 10px;
  align-content:  center;
  column-gap: 9px;
  height: 64px;
  padding: 9px 11px;
}

.privacy-icon {
  grid-row: 1 / 3;
  display: grid;
  color: #8490a0;
  background: #ffffff05;
  border: 1px solid #ffffff12;
  border-radius: 9px;
  align-self:  center;
  place-items:  center;
  width: 32px;
  height: 32px;
  font-size: 17px;
}

.privacy-option strong {
  font-size: 10px;
}

.privacy-option small {
  font-size: 7px;
}

.privacy-option.active {
  background: linear-gradient(100deg, #6e79e515, #0000);
  border-color: #7984e64d;
}

.privacy-option.active .privacy-icon {
  color: #aeb4ff;
  background: #717be51a;
  border-color: #8992f04d;
}

.room-pass-label {
  margin-top: 10px !important;
}

.room-pass-label input {
  height: 44px;
}

.create-room-map-panel .create-map-picker {
  margin: 0;
}

.create-room-map-panel .create-map-head {
  align-items:  flex-start;
  margin: 0 0 13px;
}

.create-room-map-panel .create-map-head > div {
  gap: 3px;
}

.create-room-map-panel .create-map-head > div > span {
  font-size: 7px;
}

.create-room-map-panel .create-map-head > div > strong {
  color: #e0e5e9;
  font-size: 15px;
}

.create-room-map-panel .create-map-head p {
  color: #687580;
  margin: 1px 0 0;
  font-size: 8px;
}

.create-room-map-panel .create-map-head > small {
  background: #ffffff04;
  border: 1px solid #ffffff0d;
  border-radius: 999px;
  max-width: 160px;
  padding: 4px 7px;
  color: #7a8792 !important;
}

.create-room-map-panel .create-map-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-height: 390px;
  padding: 1px 2px 3px;
}

.create-room-map-panel .map-pick-card {
  background: #090d12;
  border-radius: 11px;
  height: 158px;
}

.create-room-map-panel .map-pick-card:only-child {
  grid-column: 1 / -1;
  height: 196px;
}

.create-room-map-panel .map-pick-card img, .create-room-map-panel .map-pick-placeholder {
  height: 122px;
  bottom: 36px;
}

.create-room-map-panel .map-pick-card:only-child img, .create-room-map-panel .map-pick-card:only-child .map-pick-placeholder {
  height: 160px;
}

.create-room-map-panel .map-pick-card:after {
  height: 58px;
  inset: auto 0 36px;
}

.create-room-map-panel .map-pick-copy {
  bottom: 8px;
}

.create-room-map-panel .map-pick-copy strong {
  font-size: 10px;
}

.create-room-map-panel .map-pick-copy small {
  font-size: 7px !important;
}

.create-room-map-panel .map-pick-card.selected {
  border-color: #8c91ff;
  box-shadow: inset 0 0 0 1px #8c91ff59, 0 12px 30px #0004;
}

.create-room-map-panel .map-pick-card.selected:before {
  background: #747ff0;
  width: 23px;
  height: 23px;
  top: 9px;
  right: 9px;
}

.create-room-dialog .modal-actions {
  background: #070a0eaa;
  min-height: 66px;
  padding: 13px 24px 16px;
}

.create-room-dialog .modal-actions button {
  border-radius: 9px;
  min-width: 116px;
  height: 42px;
}

.create-room-dialog .create-room-btn {
  padding: 0 18px;
  box-shadow: 0 9px 28px #bd36d626;
}

@media (max-width: 820px) {
  .lobby-room-drawer {
    height: 100%;
    min-height: 610px;
  }

  .room-browser-title p {
    display: none;
  }

  .lobby-room-drawer .room-card {
    grid-template-columns: minmax(180px, 1fr) 82px 64px;
    height: 76px;
  }

  .lobby-room-drawer .room-enter {
    display: none;
  }

  .create-room-layout {
    grid-template-columns: 1fr;
  }

  .create-room-settings {
    border-bottom: 1px solid #ffffff0c;
    border-right: 0;
  }

  .create-room-map-panel .create-map-list {
    max-height: 300px;
  }

  .create-room-dialog {
    max-height: 94vh;
  }
}

@media (max-width: 560px) {
  .lobby-hub-header .lobby-brand-copy h1 {
    font-size: 44px;
  }

  .lobby-hub-header .lobby-brand-copy p {
    font-size: 9px;
  }

  .lobby-room-drawer {
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 0;
    inset: 0;
  }

  .room-browser-head {
    padding: 15px;
  }

  .room-browser-title strong {
    font-size: 17px !important;
  }

  .room-create-cta span {
    display: none;
  }

  .room-create-cta {
    justify-content: center;
    width: 38px;
    padding: 0;
  }

  .room-browser-profile {
    margin-left: 14px;
  }

  .lobby-room-drawer .room-list {
    padding: 7px 10px;
  }

  .lobby-room-drawer .room-card {
    grid-template-columns: minmax(150px, 1fr) 62px;
    height: 70px;
    padding: 0 10px;
  }

  .lobby-room-drawer .room-phase {
    display: none;
  }

  .lobby-room-drawer .room-map-thumb {
    width: 45px;
    height: 45px;
  }

  .create-room-map-panel .create-map-list {
    grid-template-columns: 1fr;
  }

  .create-room-map-panel .map-pick-card, .create-room-map-panel .map-pick-card:only-child {
    height: 150px;
  }

  .create-room-map-panel .map-pick-card img, .create-room-map-panel .map-pick-placeholder, .create-room-map-panel .map-pick-card:only-child img, .create-room-map-panel .map-pick-card:only-child .map-pick-placeholder {
    height: 114px;
  }
}

.lobby-room-drawer {
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1040px, 100% - 24px);
  height: 560px;
  left: 50%;
  right: auto;
  transform: translate(-50%, 18px)scale(.992);
}

.lobby-hub-shell.rooms-open .lobby-room-drawer {
  transform: translate(-50%);
}

.room-browser-head {
  border-bottom: 1px solid #ffffff0c;
  min-height: 88px;
  padding: 18px 20px;
}

.room-browser-title strong {
  font-size: 20px !important;
}

.room-browser-actions {
  align-self:  center;
}

.room-browser-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 252px;
  background: linear-gradient(90deg, transparent 0, transparent calc(100% - 252px), #ffffff018 calc(100% - 252px), #ffffff018 100%);
  min-height: 0;
}

.room-browser-main-list {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 40px;
  border-right: 1px solid #ffffff0c;
  min-width: 0;
  min-height: 0;
}

.lobby-room-drawer .room-list {
  min-height: 0;
  max-height: none;
  padding: 14px 16px 10px;
}

.lobby-room-drawer .room-empty {
  background: radial-gradient(circle at 50% 42%, #6975df09, #0000 38%);
  border: 1px dashed #ffffff0b;
  border-radius: 12px;
  height: 100%;
  min-height: 0;
}

.lobby-room-drawer .room-browser-foot {
  background: #06090c55;
  border-top: 1px solid #ffffff09;
  height: 40px;
  padding: 0 16px;
}

.room-browser-sidebar {
  display: flex;
  background: linear-gradient(180deg, #ffffff018, transparent 60%);
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 16px;
}

.room-browser-sidebar .room-browser-profile {
  background: linear-gradient(110deg, #7a7ee812, #0000);
  border-color: #7d83eb22;
  border-radius: 11px;
  width: 100%;
  min-width: 0;
  height: 62px;
  margin: 0;
  padding: 10px 10px 10px 52px;
}

.room-browser-sidebar .room-browser-profile:before {
  width: 34px;
  height: 34px;
  top: 13px;
  left: 11px;
}

.room-browser-sidebar .room-browser-profile span {
  font-size: 5px;
}

.room-browser-sidebar .room-browser-profile strong {
  font-size: 10px;
}

.room-browser-sidebar .room-browser-profile em {
  font-size: 7px;
}

.room-browser-sidebar .room-create-cta {
  border-radius: 9px;
  justify-content: center;
  width: 100%;
  height: 44px;
  font-size: 9px;
  box-shadow: 0 10px 28px #b638d31f;
}

.room-browser-tip {
  background: #ffffff025;
  display: grid;
  border: 1px solid #ffffff0b;
  border-radius: 11px;
  gap: 4px;
  margin-top: auto;
  padding: 14px;
}

.room-browser-tip small {
  letter-spacing: .16em;
  color: #717de0;
  font-size: 5px;
  font-weight: 900;
}

.room-browser-tip strong {
  color: #cdd4db;
  font-size: 10px;
}

.room-browser-tip p {
  color: #63707b;
  margin: 2px 0 0;
  font-size: 7px;
  line-height: 1.5;
}

.lobby-room-drawer .room-card {
  grid-template-columns: minmax(230px, 1fr) 105px 78px 76px;
  height: 74px;
  margin: 6px 0;
}

.lobby-room-drawer .room-map-thumb {
  width: 50px;
  height: 50px;
}

.lobby-room-drawer .room-title-copy strong {
  font-size: 11px;
}

.lobby-room-drawer .room-title-copy em {
  font-size: 7px;
}

@media (max-width: 900px) {
  .lobby-room-drawer {
    width: calc(100% - 16px);
    height: min(640px, 100vh - 110px);
  }

  .room-browser-content {
    grid-template-columns: 1fr;
  }

  .room-browser-main-list {
    border-right: 0;
  }

  .room-browser-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    border-top: 1px solid #ffffff0c;
    align-items:  center;
  }

  .room-browser-sidebar .room-browser-profile {
    height: 54px;
  }

  .room-browser-sidebar .room-create-cta {
    width: auto;
    min-width: 160px;
  }

  .room-browser-tip {
    display: none;
  }

  .lobby-room-drawer .room-card {
    grid-template-columns: minmax(180px, 1fr) 80px 62px;
  }

  .lobby-room-drawer .room-enter {
    display: none;
  }
}

@media (max-width: 560px) {
  .lobby-room-drawer {
    width: calc(100% - 8px);
    height: calc(100vh - 105px);
  }

  .room-browser-content {
    display: flex;
    flex-direction: column;
  }

  .room-browser-main-list {
    flex: 1;
    min-height: 0;
  }

  .room-browser-sidebar {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .room-browser-sidebar .room-browser-profile {
    display: none;
  }

  .room-browser-sidebar .room-create-cta {
    width: 100%;
  }

  .lobby-room-drawer .room-card {
    grid-template-columns: minmax(150px, 1fr) 60px;
  }

  .lobby-room-drawer .room-pop {
    display: none;
  }
}
