body.authenticated-lobby {
  background-color: #020202;
  background-image: var(--non-battle-background-image);
  background-position: var(--non-battle-background-position);
  background-repeat: no-repeat;
  background-size: var(--non-battle-background-size);
}

#lobby-ui {
  --lobby-panel-vertical-padding: 22px;
  position: absolute;
  /*
   * 备战功能面板的中心固定在视口纵向 70% 处；窗口尺寸变化时继续按
   * 相同比例定位，避免遮挡背景图中部的视觉主体。
   */
  top: 70%;
  left: 50%;
  z-index: 100;
  /* 与登录面板保持同一宽度和近似内边距；边框只比内部按钮略宽。 */
  width: min(390px, calc(100vw - 36px));
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  padding: var(--lobby-panel-vertical-padding) 24px;
  border: 1px solid #776951;
  border-radius: 10px;
  background: rgba(18, 21, 22, .92);
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .62);
  text-align: center;
}

#reconnect-message {
  margin-bottom: 16px;
  padding: 9px;
  border-radius: 5px;
  background: rgba(244, 67, 54, .18);
  color: #ffb3ad;
  font-size: 14px;
}
.lobby-deck-section, .lobby-room-section {
  display: grid;
  width: 100%;
  gap: 12px;
}
.lobby-deck-section { grid-template-columns: minmax(0, 1fr); }
.lobby-divider {
  height: 1px;
  margin: 20px 0;
  background: #555;
}
.lobby-join-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}
#room-input {
  box-sizing: border-box;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #786751;
  border-radius: 4px;
  background: rgba(9, 11, 12, .92);
  color: #fff;
  font-size: 16px;
  text-align: center;
  user-select: text;
  -webkit-user-select: text;
}
#create-room-btn, #open-deck-builder-btn, #join-room-btn, #test-mode-btn {
  padding: 10px 18px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
#create-room-btn { background: #4caf50; }
#open-deck-builder-btn { background: #2868b7; }
#join-room-btn { background: #2196f3; }
#test-mode-entry { margin-top: 20px; }
#test-mode-btn {
  width: 100%;
  border: 1px solid #cd9a5b;
  background: #8e5b21;
}
#test-mode-entry > div { margin-top: 8px; color: #bbb; font-size: 13px; line-height: 1.4; }
#create-room-btn:disabled, #join-room-btn:disabled { opacity: .42; cursor: not-allowed !important; }
#selected-deck-display {
  min-width: 0;
  padding: 10px 12px;
  overflow: hidden;
  border: 1px solid #776951;
  border-radius: 4px;
  background: rgba(0, 0, 0, .38);
  color: #e5d5ba;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#deck-builder-ui {
  position: fixed;
  inset: 0;
  z-index: 210;
  box-sizing: border-box;
  padding: 54px 56px 22px 22px;
  /*
   * 登录后的 body 已经按照登录界面的 center/cover 规则绘制 logo.png。
   * 构筑层保持透明，避免窗口尺寸或内部滚动布局变化时第二层背景重新取景。
   */
  background: transparent;
  color: #f5f5f5;
  font-family: sans-serif;
}
#deck-builder-ui[hidden], #deck-share-dialog[hidden] { display: none; }
#deck-builder-ui input, #deck-builder-ui textarea, #deck-builder-ui select,
#deck-share-dialog textarea { user-select: text; -webkit-user-select: text; }
#deck-builder-exit {
  position: absolute;
  top: 12px;
  left: 18px;
  z-index: 4;
  padding: 8px 17px;
  border: 1px solid #967b59;
  border-radius: 5px;
  background: #34302c;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.deck-builder-layout {
  display: grid;
  grid-template-columns: minmax(260px, 29vw) minmax(360px, 1fr) minmax(410px, 1.28fr);
  gap: 10px;
  height: 100%;
  min-width: 0;
}
.deck-preview-column, .deck-editor-column, .deck-tools-column,
.deck-catalog-panel, .deck-analysis-panel {
  min-width: 0;
  min-height: 0;
}
.deck-preview-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #3e3e3e;
}
.deck-preview-stage {
  position: relative;
  /* main.js 会把对局左侧大图经过 HUD 缩放后的真实宽度写入此变量。 */
  width: min(var(--large-card-preview-screen-width, 360px), 100%);
  aspect-ratio: 252 / 352;
  overflow: hidden;
  border: 2px solid #7b6951;
  border-radius: 9px;
  background: #151719;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .7);
}
.deck-preview-stage.double-sided-preview {
  aspect-ratio: auto;
  width: min(
    var(--large-card-preview-screen-width, 360px),
    100%,
    33.5vh
  );
}
#deck-preview-composition {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.deck-preview-stage.double-sided-preview #deck-preview-composition {
  position: relative;
  inset: auto;
}
#deck-preview-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: #888;
  text-align: center;
}
.deck-preview-stage:not(.empty) #deck-preview-placeholder { display: none; }
.deck-editor-column {
  display: flex;
  flex-direction: column;
  padding: 14px;
  border: 1px solid #4d4942;
  border-radius: 8px;
  background: rgba(25, 27, 28, .94);
}
.deck-editor-heading { display: grid; grid-template-columns: 1fr 1.5fr auto; gap: 10px; align-items: end; }
.deck-editor-heading label { display: grid; gap: 5px; color: #d3c3aa; font-size: 14px; }
.deck-editor-heading input, .deck-search-row input, #deck-type-search-panel select,
#deck-slot-search-controls select {
  box-sizing: border-box;
  width: 100%;
  padding: 8px 9px;
  border: 1px solid #625a4f;
  border-radius: 4px;
  background: #101214;
  color: #fff;
  font-size: 15px;
}
#deck-count-summary { padding: 8px 6px; color: #ffd596; font-weight: bold; white-space: nowrap; }
.deck-card-grid {
  --deck-card-column-gap: clamp(4px, .45vw, 9px);
  --deck-card-row-gap: clamp(12px, 1vw, 20px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  /*
   * 每行必须先采用卡片在正常文档流中计算出的完整高度，再附加行间距。
   * 不能让滚动容器按一段固定短行高排版，否则下一行会覆盖上一行卡面。
   */
  grid-auto-rows: max-content;
  grid-auto-flow: row;
  justify-items: stretch;
  align-items: start;
  align-content: start;
  column-gap: var(--deck-card-column-gap);
  row-gap: var(--deck-card-row-gap);
  min-height: 0;
  margin-top: 13px;
  padding: 9px;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid #3d3d3d;
  border-radius: 5px;
  background: #111314;
}
#deck-card-list { flex: 1; }
.deck-card-tile {
  position: relative;
  display: block;
  align-self: start;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 252 / 352;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 5px;
  background: #252525;
  cursor: pointer;
}
/*
 * 图片本身采用绝对定位，不会为网格提供内容高度。使用比例占位块把主卡的
 * 实际缩放高度写回正常文档流，确保网格能据此计算每一行的起始位置。
 */
.deck-card-tile::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 139.68254%;
  pointer-events: none;
}
.deck-sticker-tile { aspect-ratio: 250 / 230; }
.deck-sticker-tile::before { padding-top: 92%; }
.deck-card-tile:hover, .deck-card-tile.selected { border-color: #63a7ff; }
.deck-card-tile > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: fill; pointer-events: none; }
.deck-card-tile .deck-card-slot-image {
  inset: auto;
  left: 55.5556%;
  bottom: 5.6818%;
  width: 39.6825%;
  height: 26.1364%;
  z-index: 2;
  object-fit: contain;
}
.deck-card-tile .deck-card-slot-back { z-index: 2; }
.deck-card-tile .deck-card-index {
  position: absolute;
  right: 3px;
  bottom: 3px;
  z-index: 4;
  min-width: 19px;
  padding: 2px 4px;
  border-radius: 10px;
  background: rgba(0, 0, 0, .8);
  color: #fff;
  font-size: 11px;
}
#deck-editor-help { margin: 8px 2px 0; color: #888; font-size: 12px; }
#deck-builder-status { min-height: 20px; margin: 7px 2px 0; color: #ffbf80; font-size: 14px; }
.deck-tools-column { display: grid; grid-template-rows: minmax(0, 1fr) minmax(210px, 34%); gap: 12px; }
.deck-catalog-panel, .deck-analysis-panel {
  display: flex;
  flex-direction: column;
  padding: 12px;
  border: 1px solid #4d4942;
  border-radius: 8px;
  background: rgba(25, 27, 28, .94);
}
.deck-catalog-heading { display: flex; justify-content: space-between; gap: 8px; }
.deck-search-mode-tabs, .deck-analysis-tabs { display: flex; gap: 5px; }
.deck-search-mode-tabs button, .deck-analysis-tabs button, #deck-slot-mode-exit,
.deck-action-row button, .account-deck-drawer-actions button, .deck-share-dialog-panel button {
  padding: 7px 11px;
  border: 1px solid #597799;
  border-radius: 4px;
  background: #283746;
  color: #fff;
  cursor: pointer;
}
.deck-search-mode-tabs button.active, .deck-analysis-tabs button.active { background: #2868b7; border-color: #69aaff; }
.deck-search-row { display: grid; grid-template-columns: 1fr auto; gap: 7px; margin-top: 10px; }
.deck-search-row button { min-width: 42px; border: 1px solid #477aad; border-radius: 4px; background: #2868b7; color: white; font-size: 22px; }
#deck-type-search-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 10px; }
#deck-type-search-panel[hidden] { display: none; }
#deck-type-search-panel label, #deck-slot-search-controls > label,
.deck-filter-field { display: grid; gap: 4px; color: #cfc1ab; font-size: 13px; }
.deck-cost-range-label { grid-template-columns: 1fr auto !important; align-items: center; }
#deck-cost-filter-value { color: #8fc4ff; font-size: 14px; font-weight: bold; }
#deck-cost-filter {
  grid-column: 1 / -1;
  width: 100%;
  margin: 5px 0 0;
  accent-color: #408fe1;
  cursor: pointer;
}
.deck-filter-dropdown { position: relative; min-width: 0; }
#deck-cost-kind-dropdown-toggle, #deck-slot-tag-dropdown-toggle {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  padding: 8px 9px;
  border: 1px solid #625a4f;
  border-radius: 4px;
  background: #101214;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.deck-cost-kind-filter-field { grid-column: 1 / -1; }
.deck-cost-kind-filter-row {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}
#deck-cost-kind-dropdown {
  flex: 0 0 clamp(108px, 28%, 138px);
  width: clamp(108px, 28%, 138px);
}
.deck-cost-kind-match-control {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: #cfc1ab;
  font-size: 11px;
  white-space: nowrap;
}
.deck-binary-switch {
  position: relative;
  display: block !important;
  width: 38px;
  height: 20px;
  flex: 0 0 38px;
  cursor: pointer;
}
.deck-binary-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.deck-binary-switch-track {
  position: absolute;
  inset: 0;
  border: 1px solid #657586;
  border-radius: 11px;
  background: #26313c;
  transition: background 120ms ease, border-color 120ms ease;
}
.deck-binary-switch-track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #dce9f7;
  transition: transform 120ms ease;
}
.deck-binary-switch input:checked + .deck-binary-switch-track {
  border-color: #6aaeff;
  background: #2868b7;
}
.deck-binary-switch input:checked + .deck-binary-switch-track::after {
  transform: translateX(18px);
}
.deck-binary-switch input:focus-visible + .deck-binary-switch-track {
  outline: 2px solid #86beff;
  outline-offset: 2px;
}
.deck-filter-dropdown-panel {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  z-index: 20;
  width: min(270px, 72vw);
  box-sizing: border-box;
  padding: 9px;
  border: 1px solid #625a4f;
  border-radius: 6px;
  background: rgba(16, 18, 20, .98);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .65);
}
.deck-filter-dropdown-panel[hidden] { display: none; }
.deck-cost-kind-icon-list { display: grid; grid-template-columns: repeat(5, 34px); justify-content: center; gap: 8px; }
.deck-cost-kind-icon {
  width: 34px;
  height: 34px;
  padding: 1px;
  overflow: hidden;
  border: 1px solid #555;
  border-radius: 50%;
  background: #151719;
  opacity: .62;
  cursor: pointer;
}
.deck-cost-kind-icon.active { border-color: #69aaff; opacity: 1; box-shadow: 0 0 0 2px rgba(69, 151, 255, .35); }
.deck-cost-kind-icon img { width: 100%; height: 100%; object-fit: contain; pointer-events: none; }
.deck-compatible-toggle { grid-template-columns: auto 1fr !important; align-items: center; margin-top: 10px; }
.deck-compatible-toggle input { width: auto !important; }
.deck-slot-tag-filter-field { margin-top: 9px; }
#deck-slot-tag-dropdown-panel {
  right: auto;
  left: 0;
  width: min(230px, 68vw);
}
.deck-slot-tag-option-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.deck-slot-tag-option {
  padding: 7px 8px;
  border: 1px solid #555;
  border-radius: 4px;
  background: #202326;
  color: #ddd;
  font-size: 13px;
  cursor: pointer;
}
.deck-slot-tag-option.active {
  border-color: #69aaff;
  background: #294a70;
  color: #fff;
}
.deck-catalog-grid {
  flex: 1;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  /*
   * 目录内容变少时仍保留纵向滚动条的固定槽位，避免“全部插槽卡”与筛选结果
   * 之间切换时可用宽度改变，进而让每张插槽卡重新缩放。
   */
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
.deck-analysis-tabs { margin-bottom: 9px; }
#deck-analysis-chart { display: flex; flex: 1; align-items: end; gap: 7px; min-height: 110px; overflow-x: auto; }
.deck-analysis-bar-item { display: flex; flex: 1 0 42px; flex-direction: column; justify-content: end; align-items: center; height: 100%; min-width: 42px; }
.deck-analysis-bar-value { margin-bottom: 3px; color: #fff; font-size: 12px; }
.deck-analysis-bar { width: min(34px, 76%); min-height: 2px; border-radius: 3px 3px 0 0; background: linear-gradient(#68aeff, #2868b7); }
.deck-analysis-bar-label { margin-top: 4px; color: #aaa; font-size: 11px; white-space: nowrap; }
.deck-analysis-element-icon { display: block; width: 25px; height: 25px; object-fit: contain; }
.deck-action-row { display: grid; grid-template-columns: 1fr 1fr 1.35fr; gap: 7px; margin-top: 10px; }
#deck-select-btn { background: #8e5b21; border-color: #cd9a5b; }
#account-deck-drawer {
  position: absolute;
  top: 60px;
  right: 0;
  bottom: 22px;
  z-index: 5;
  width: 250px;
  transform: translateX(calc(100% - 24px));
  border: 1px solid #6e604d;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: rgba(22, 24, 25, .98);
  box-shadow: -10px 0 30px rgba(0, 0, 0, .48);
  transition: transform 180ms ease;
}
#account-deck-drawer:hover, #account-deck-drawer:focus-within { transform: translateX(0); }
#account-deck-drawer-handle { position: absolute; left: 0; top: 42%; width: 24px; height: 74px; border: 0; background: #7a552c; color: #fff; font-size: 23px; }
.account-deck-drawer-content { display: flex; height: 100%; box-sizing: border-box; flex-direction: column; padding: 12px 12px 12px 34px; }
.account-deck-drawer-content h3 { margin: 0 0 10px; color: #ffd596; }
#account-deck-list { flex: 1; overflow-y: auto; }
.account-deck-option { display: block; width: 100%; margin-bottom: 7px; padding: 8px; border: 1px solid #505050; border-radius: 4px; background: #292b2d; color: #fff; text-align: left; cursor: pointer; }
.account-deck-option.selected { border-color: #62a3ef; background: #293e54; }
.account-deck-option small { display: block; margin-top: 3px; color: #aaa; }
.account-deck-drawer-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
#deck-share-dialog { position: fixed; inset: 0; z-index: 400; display: grid; place-items: center; background: rgba(0, 0, 0, .55); }
.deck-share-dialog-panel { width: min(720px, calc(100vw - 40px)); padding: 18px; border: 1px solid #927650; border-radius: 8px; background: #1d2022; color: #fff; }
.deck-share-dialog-panel h3 { margin-top: 0; color: #ffd596; }
#deck-share-code { box-sizing: border-box; width: 100%; height: 190px; padding: 10px; border: 1px solid #555; background: #0e1011; color: #d9eaff; resize: vertical; }
.deck-share-dialog-panel > div { display: flex; justify-content: flex-end; gap: 8px; margin-top: 10px; }

#deck-delete-confirm-dialog {
  position: fixed;
  inset: 0;
  z-index: 420;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .58);
}
#deck-delete-confirm-dialog[hidden] { display: none; }
.deck-selection-result-panel,
.deck-delete-confirm-panel {
  width: min(430px, calc(100vw - 40px));
  box-sizing: border-box;
  padding: 24px;
  border: 2px solid #8d6a43;
  border-radius: 8px;
  background: #1b1b1b;
  color: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .72);
  text-align: center;
}
.deck-selection-result-panel h2,
.deck-delete-confirm-panel h2 {
  margin: 0 0 14px;
  color: #f2bd77;
  font-size: 24px;
}
.deck-selection-result-panel p,
.deck-delete-confirm-panel p {
  min-height: 24px;
  margin: 0;
  color: #ddd;
  font-size: 16px;
  line-height: 1.55;
}
.deck-delete-confirm-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.deck-delete-confirm-actions button {
  min-width: 112px;
  padding: 9px 22px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
#deck-delete-confirm-btn { background: #c0392b; }
#deck-delete-cancel-btn { background: #555; }
#deck-delete-confirm-btn:hover:not(:disabled) { background: #d44839; }
#deck-delete-cancel-btn:hover:not(:disabled) { background: #686868; }
.deck-delete-confirm-actions button:disabled {
  opacity: .48;
  cursor: not-allowed;
}

#deck-selection-result-dialog {
  position: fixed;
  inset: 0;
  z-index: 421;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .58);
}
#deck-selection-result-dialog[hidden] { display: none; }
.deck-selection-result-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.deck-selection-result-actions button {
  min-width: 112px;
  padding: 9px 22px;
  border: 0;
  border-radius: 5px;
  background: #2868b7;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.deck-selection-result-actions button:hover { background: #337bd0; }

#waiting-ui {
  width: min(520px, calc(100vw - 40px));
  box-sizing: border-box;
  border-radius: 8px;
}
#match-preparation-settings {
  display: grid;
  gap: 13px;
  margin: 0 0 15px;
  padding: 14px 16px;
  border: 1px solid rgba(205, 154, 91, .48);
  border-radius: 7px;
  background: rgba(5, 5, 5, .46);
  text-align: left;
}
.match-preparation-settings-heading,
.match-setting-title,
.match-setting-checkbox-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.match-preparation-settings-heading {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: #f0c48a;
  font-size: 17px;
}
#match-settings-permission-label {
  color: #aaa;
  font-size: 13px;
  font-weight: normal;
}
#match-preparation-settings.server-version-mismatch {
  border-color: rgba(244, 67, 54, .78);
}
#match-preparation-settings.server-version-mismatch
  #match-settings-permission-label {
  color: #ff8a80;
}
.match-setting-row {
  display: grid;
  gap: 4px;
  color: #eee;
  font-size: 15px;
}
.match-setting-title output {
  color: #7ec8ff;
  font-weight: bold;
}
.match-setting-row input[type="range"] {
  width: 100%;
  margin: 0;
  accent-color: #2196f3;
  cursor: pointer;
}
.match-setting-scale {
  display: grid;
  color: #929292;
  font-size: 12px;
  text-align: center;
}
.match-setting-scale-three { grid-template-columns: repeat(3, 1fr); }
.match-setting-scale-five {
  position: relative;
  display: block;
  height: 15px;
}
.match-setting-scale-five span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  text-align: center;
}
.match-setting-scale-five span:nth-child(1) {
  left: 0;
  transform: none;
}
.match-setting-scale-five span:nth-child(2) { left: 25%; }
.match-setting-scale-five span:nth-child(3) { left: 50%; }
.match-setting-scale-five span:nth-child(4) { left: 75%; }
.match-setting-scale-five span:nth-child(5) {
  right: 0;
  transform: none;
}
.match-setting-scale span:first-child { text-align: left; }
.match-setting-scale span:last-child { text-align: right; }
.match-setting-checkbox-row {
  color: #eee;
  cursor: pointer;
}
.match-setting-checkbox-row > span {
  display: grid;
  gap: 3px;
}
.match-setting-checkbox-row small {
  color: #999;
  font-size: 12px;
}
.match-setting-checkbox-row input {
  width: 21px;
  height: 21px;
  accent-color: #4caf50;
  cursor: pointer;
}
#match-preparation-settings.read-only input {
  cursor: default;
  opacity: .72;
}

@media (max-width: 1180px) {
  .deck-builder-layout { grid-template-columns: 240px minmax(320px, 1fr) minmax(360px, 1.1fr); }
  .deck-editor-heading { grid-template-columns: 1fr; }
  #deck-count-summary { position: absolute; margin-left: 255px; }
}

@media (max-width: 900px) {
  #deck-builder-ui { overflow: auto; padding-right: 45px; }
  .deck-builder-layout { grid-template-columns: 220px minmax(340px, 1fr); min-width: 760px; }
  .deck-tools-column { grid-column: 1 / -1; grid-template-columns: 1.4fr 1fr; grid-template-rows: 430px; }
  .lobby-join-row { grid-template-columns: 1fr; }
}
