/* The big screen that mounts the selected game; fills all space above the
   gallery strip. */
._screen_15rbt_3 {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

._stage_15rbt_13 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: auto;
}

._loading_15rbt_22 {
  text-align: center;
  color: var(--muted);
}

/* Accent color is supplied per-game via the --accent CSS variable (inline). */
._spinner_15rbt_28 {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--accent, #fff);
  border-radius: 50%;
  margin: 0 auto 14px;
  animation: _spin_15rbt_28 0.8s linear infinite;
}

@keyframes _spin_15rbt_28 {
  to {
    transform: rotate(360deg);
  }
}
.keen-slider:not([data-keen-slider-disabled]){-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;align-content:flex-start;display:flex;overflow:hidden;position:relative;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-khtml-user-select:none;width:100%}.keen-slider:not([data-keen-slider-disabled]) .keen-slider__slide{min-height:100%;overflow:hidden;position:relative;width:100%}.keen-slider:not([data-keen-slider-disabled])[data-keen-slider-reverse]{flex-direction:row-reverse}.keen-slider:not([data-keen-slider-disabled])[data-keen-slider-v]{flex-wrap:wrap}/* A thumbnail in the gallery strip. The per-game accent comes in via the
   --accent CSS variable (set inline); selection just toggles a class. */
._thumb_1qfzt_3 {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 8px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--panel-2);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

._thumb_1qfzt_3:hover {
  border-color: var(--accent);
}

._selected_1qfzt_27 {
  background: var(--panel);
  border-color: var(--accent);
}

._art_1qfzt_32 {
  flex: 0 0 auto;
  height: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  /* faint wash of the game's accent behind the emoji */
  background: color-mix(in srgb, var(--accent) 13%, transparent);
}

._emoji_1qfzt_44 {
  font-size: 32px;
  line-height: 1;
}

._title_1qfzt_49 {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Thumbnail strip pinned to the bottom of the container, floating over the game. */
._panel_189ew_2 {
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  height: 100px;
  padding: 12px;
  background: rgba(19, 26, 42, 0.5);
  border-top: 1px solid var(--border);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

._panelClosed_189ew_16 {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

/* Carousel row: track sits between the two arrows. */
._carousel_189ew_23 {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Track clips the sliding content; fades sit inside it. */
._track_189ew_31 {
  position: relative;
  flex: 1 1 auto;
  height: 100%;
  min-width: 0;
  overflow: hidden;
}

._track_189ew_31 .keen-slider {
  height: 100%;
  /* keen-slider sets overflow:hidden by default — we override so the first and
     last slides can be flush with the track edge when at the scroll boundary. */
  overflow: visible;
}

/* Each slide is exactly 200 px wide; keen-slider reads this via min-width when
   perView:"auto" is set. */
._slide_189ew_48 {
  min-width: 200px;
  max-width: 200px;
  height: 100%;
}

/* Edge fades sit above the track content and signal hidden overflow. */
._fade_189ew_55 {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}

._fadeLeft_189ew_64 {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(19, 26, 42, 0.95) 0%,
    transparent 100%
  );
}

._fadeRight_189ew_73 {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(19, 26, 42, 0.95) 0%,
    transparent 100%
  );
}

/* Prev/next arrow buttons — circular pucks flanking the track. */
._arrow_189ew_83 {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--panel-2);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: background 0.15s ease, opacity 0.15s ease;
}

._arrow_189ew_83:hover:not(:disabled) {
  background: var(--bg);
}

._arrow_189ew_83:disabled {
  opacity: 0.3;
  cursor: default;
}

/* Close button — small puck above the top-right corner of the panel. */
._closeButton_189ew_109 {
  position: absolute;
  top: -16px;
  right: 12px;
  z-index: 1100;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--panel-2);
  color: var(--text);
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

._closeButton_189ew_109:hover {
  background: var(--bg);
}

/* Floating open button — bottom-left, visible only when the panel is closed. */
._openButton_189ew_134 {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1000;
  width: 38px;
  height: 38px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--panel);
  color: var(--text);
  font-size: 16px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

._openButton_189ew_134:hover {
  background: var(--panel-2);
}

._openButtonIcon_189ew_160 {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
/* App shell: full viewport, the game screen fills it, the games panel floats
   over the bottom. The theme tokens live here (not :root) so the lobby ships no
   global CSS; .app covers the whole viewport, so they still cascade to
   everything (including the absolutely-positioned panel). */
._app_m64tu_3 {
  --bg: #0b0f1a;
  --panel: #131a2a;
  --panel-2: #1b2438;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e5e7eb;
  --muted: #94a3b8;

  position: relative; /* anchor for the absolutely-positioned games panel */
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
