:root {
  --solo-asphalt: #0b0c0f;
  --solo-panel: #14161b;
  --solo-paper: #f1efe7;
  --solo-ink: #17181b;
  --solo-amber: #ffb000;
  --solo-amber-pale: #ffd36a;
  --solo-muted: #93969f;
  --solo-line: rgba(255, 255, 255, .13);
  --solo-display: "Avenir Next Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
  --solo-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.game-button {
  min-height: 54px;
  border: 1px solid rgba(255, 187, 35, .5);
  border-radius: 17px;
  padding: 0 18px;
  background: rgba(255, 176, 0, .92);
  color: #16130b;
  font-weight: 820;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
  -webkit-tap-highlight-color: transparent;
}

.game-button:focus-visible,
.solo-game button:focus-visible {
  outline: 3px solid var(--solo-amber-pale);
  outline-offset: 3px;
}

.solo-game {
  position: fixed;
  z-index: 30;
  inset: 0;
  pointer-events: none;
  font-family: var(--solo-body);
}

.solo-game > * { pointer-events: auto; }

.solo-lobby,
.solo-preparing,
.solo-result {
  width: 100%;
  height: 100dvh;
  min-height: 100vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    linear-gradient(125deg, transparent 0 47%, rgba(255, 176, 0, .035) 47% 53%, transparent 53%),
    radial-gradient(circle at 88% 8%, #27240f 0, transparent 31%),
    var(--solo-asphalt);
  color: #fff;
}

.solo-lobby {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: calc(18px + env(safe-area-inset-top)) 18px calc(18px + env(safe-area-inset-bottom));
}

.solo-session-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.solo-result > .solo-session-header { margin-bottom: 28px; }

.solo-account {
  min-width: 0;
  max-width: min(67vw, 330px);
  min-height: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 6px 7px 6px 10px;
  border: 1px solid var(--solo-line);
  border-radius: 11px;
  background: rgba(255, 255, 255, .045);
  color: #fff;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.solo-account__identity {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.solo-account__identity small {
  color: rgba(255, 255, 255, .43);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.solo-account__identity strong {
  overflow: hidden;
  font-size: 11px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.solo-account__action {
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 0 9px;
  border-left: 1px solid var(--solo-line);
  color: var(--solo-amber-pale);
  font-size: 10px;
  font-weight: 820;
}

.solo-account.is-pending { opacity: .62; }
.solo-account:disabled { cursor: wait; }

@media (max-width: 380px) {
  .solo-session-header { gap: 9px; }
  .solo-wordmark { font-size: 13px; gap: 5px; }
  .solo-wordmark i { width: 13px; }
  .solo-account { max-width: 68vw; gap: 7px; padding-left: 8px; }
  .solo-account__action { padding-inline: 7px; }
}

.solo-wordmark {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--solo-display);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .13em;
}

.solo-wordmark i {
  width: 16px;
  height: 4px;
  transform: skewX(-34deg);
  background: var(--solo-amber);
  box-shadow: -7px 0 0 rgba(255, 176, 0, .35);
}

.solo-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--solo-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font-size: 27px;
  line-height: 1;
}

.solo-kicker {
  margin: 0;
  color: var(--solo-amber);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.solo-lobby__copy { margin-top: 2px; }

.solo-home { gap: 23px; padding-top: calc(13px + env(safe-area-inset-top)); }

.solo-home-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.solo-home-header__eyebrow {
  color: rgba(255, 255, 255, .45);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.solo-home__brand {
  margin: -2px 0 -7px;
  font-family: var(--solo-display);
  font-size: clamp(52px, 15vw, 92px);
  font-weight: 950;
  line-height: .78;
  letter-spacing: -.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.solo-home__brand span { color: var(--solo-amber); }

.solo-community {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border-top: 1px solid var(--solo-line);
  border-bottom: 1px solid var(--solo-line);
}

.solo-community > span { display: grid; grid-template-columns: auto auto; column-gap: 5px; align-items: baseline; }
.solo-community strong { color: var(--solo-amber-pale); font-family: var(--solo-display); font-size: 21px; font-variant-numeric: tabular-nums; line-height: 1; }
.solo-community small { color: rgba(255, 255, 255, .5); font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.solo-community p { min-width: 0; margin: 0; overflow: hidden; color: rgba(255, 255, 255, .52); font-size: 10px; text-align: right; text-overflow: ellipsis; white-space: nowrap; }
.solo-community p b { color: rgba(255, 255, 255, .8); }
.solo-community__live { position: relative; padding-left: 11px; }
.solo-community__live > i { position: absolute; top: 50%; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--solo-amber); transform: translateY(-50%); }

@media (prefers-reduced-motion: no-preference) {
  .solo-community__live > i { animation: solo-community-pulse 2.4s ease-out infinite; }
}

@keyframes solo-community-pulse {
  0%, 45%, 100% { box-shadow: 0 0 0 0 rgba(255, 176, 0, .32); }
  22% { box-shadow: 0 0 0 5px rgba(255, 176, 0, 0); }
}

.solo-stats { display: grid; gap: 10px; }
.solo-stats .solo-section-heading { align-items: center; }
.solo-stats .solo-section-heading h2 { font-size: 20px; white-space: nowrap; }
.solo-stats .solo-section-heading button { white-space: nowrap; }

.solo-player-summary {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 2px 2px 1px;
}

.solo-player-summary > span { min-width: 0; display: grid; gap: 3px; }
.solo-player-summary > span:last-child { text-align: right; }
.solo-player-summary small { color: rgba(255, 255, 255, .48); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.solo-player-summary strong { overflow: hidden; font-family: var(--solo-display); font-size: 18px; line-height: 1; text-overflow: ellipsis; white-space: nowrap; }
.solo-player-summary > span:last-child strong { color: var(--solo-amber-pale); }

.solo-scoreboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 176, 0, .52);
  background: rgba(255, 176, 0, .065);
}

.solo-scoreboard span {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 12px 8px 10px;
  text-align: center;
}

.solo-scoreboard span + span { border-left: 1px solid rgba(255, 176, 0, .26); }
.solo-scoreboard strong { overflow: hidden; font-family: var(--solo-display); font-size: 27px; font-variant-numeric: tabular-nums; line-height: .9; text-overflow: ellipsis; }
.solo-scoreboard small { color: rgba(255, 255, 255, .56); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.solo-catalog,
.solo-activity-board,
.solo-multiplayer { display: grid; gap: 10px; }

.solo-section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--solo-line);
  padding-bottom: 8px;
}

.solo-section-heading h2 {
  margin: 0;
  font-family: var(--solo-display);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -.015em;
  text-transform: uppercase;
}

.solo-section-heading > span,
.solo-section-heading button {
  border: 0;
  padding: 3px 0;
  background: transparent;
  color: rgba(255, 255, 255, .52);
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.solo-section-heading button { color: var(--solo-amber-pale); }

.solo-mode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.solo-mode-tile {
  min-width: 0;
  min-height: 135px;
  height: clamp(135px, 34vw, 168px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 10px 10px;
  border: 1px solid var(--solo-line);
  border-radius: 0;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  text-align: left;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.solo-mode-tile:not(:disabled):active { transform: scale(.975); }
.solo-mode-tile--featured { border-color: var(--solo-amber); background: var(--solo-amber); color: var(--solo-ink); }
.solo-mode-tile.is-locked { opacity: .43; }
.solo-mode-tile__icon { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.solo-mode-tile > span { min-width: 0; display: grid; gap: 3px; }
.solo-mode-tile strong { overflow: hidden; font-size: 12px; font-weight: 880; text-overflow: ellipsis; }
.solo-mode-tile small { color: rgba(255, 255, 255, .58); font-size: 9px; font-weight: 700; line-height: 1.25; text-transform: uppercase; }
.solo-mode-tile--featured small { color: rgba(23, 24, 27, .58); }

.solo-activity-board ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solo-activity-board li {
  min-width: 0;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px;
  border: 1px solid var(--solo-line);
  background: rgba(255, 255, 255, .035);
}

.solo-activity-tile__index { color: rgba(255, 255, 255, .34); font-family: var(--solo-display); font-size: 12px; }
.solo-activity-board li strong { margin-top: 14px; font-size: 12px; }
.solo-activity-board li small { display: -webkit-box; margin-top: 4px; overflow: hidden; color: rgba(255, 255, 255, .62); font-size: 11px; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.solo-activity-board li b { margin-top: auto; color: var(--solo-amber-pale); font-family: var(--solo-display); font-size: 21px; font-style: normal; font-variant-numeric: tabular-nums; }
.solo-activity-board li b i { color: rgba(255, 255, 255, .52); font-family: var(--solo-body); font-size: 9px; font-style: normal; text-transform: uppercase; }

.solo-empty-tile { min-height: 92px; display: grid; align-content: center; gap: 4px; padding: 14px; border: 1px solid var(--solo-line); color: rgba(255, 255, 255, .52); }
.solo-empty-tile strong { color: #fff; font-size: 12px; }
.solo-empty-tile span { font-size: 10px; }

.solo-multiplayer__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
.solo-multiplayer__grid > div { min-height: 78px; display: grid; align-content: end; gap: 3px; padding: 10px; border: 1px dashed rgba(255, 255, 255, .18); color: rgba(255, 255, 255, .56); }
.solo-multiplayer__grid strong { font-family: var(--solo-display); font-size: 16px; text-transform: uppercase; }
.solo-multiplayer__grid small { font-size: 10px; text-transform: uppercase; }

.solo-ranking { gap: 18px; }
.solo-ranking__intro { display: grid; gap: 10px; }
.solo-ranking__intro h1 { margin: 0; font-family: var(--solo-display); font-size: clamp(47px, 14vw, 76px); line-height: .86; letter-spacing: -.045em; text-transform: uppercase; }
.solo-ranking__intro > p:last-child { max-width: 34rem; margin: 0; color: rgba(255, 255, 255, .62); font-size: 12px; line-height: 1.45; }
.solo-ranking__list { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; }
.solo-ranking__row { min-height: 58px; display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 10px; align-items: center; padding: 8px 11px; border: 1px solid var(--solo-line); background: rgba(255, 255, 255, .035); }
.solo-ranking__row.is-current { border-color: var(--solo-amber); background: rgba(255, 176, 0, .08); }
.solo-ranking__row > b { color: var(--solo-amber-pale); font-family: var(--solo-display); font-size: 25px; font-variant-numeric: tabular-nums; text-align: center; }
.solo-ranking__row > span { min-width: 0; display: grid; gap: 3px; }
.solo-ranking__row strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.solo-ranking__row small { color: rgba(255, 255, 255, .5); font-size: 10px; }
.solo-ranking__current { display: grid; gap: 7px; padding-top: 7px; border-top: 1px solid var(--solo-line); }
.solo-ranking__current > span { color: rgba(255, 255, 255, .48); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.solo-ranking__current .solo-ranking__list { max-height: none; }
.solo-ranking__back { margin-top: auto; }

.solo-lobby__copy h1,
.solo-preparing h1,
.solo-result h1 {
  margin: 10px 0 0;
  font-family: var(--solo-display);
  font-size: clamp(43px, 13vw, 70px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.solo-lobby__copy > p:last-child,
.solo-preparing > p:not(.solo-kicker) {
  max-width: 36rem;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.5;
}

.solo-lobby__copy > p:last-child strong { color: #fff; }

.solo-rule-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solo-rule-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 68px;
  padding: 9px 13px 9px 9px;
  border: 1px solid var(--solo-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .035);
}

.solo-rule-list > li > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 48px;
  border-radius: 9px;
  background: var(--solo-paper);
  color: var(--solo-ink);
  font-family: var(--solo-display);
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  font-weight: 950;
}

.solo-rule-list p { margin: 0; }
.solo-rule-list strong,
.solo-rule-list small { display: block; }
.solo-rule-list strong { color: #fff; font-size: 13px; }
.solo-rule-list small { margin-top: 3px; color: rgba(255, 255, 255, .5); font-size: 10px; line-height: 1.35; }
.solo-rule-list .is-jackpot { border-color: rgba(255, 176, 0, .48); background: rgba(255, 176, 0, .07); }
.solo-rule-list .is-jackpot > span { background: var(--solo-amber); }

.solo-letter-rule {
  margin: -10px 2px 0;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.solo-letter-rule strong { color: var(--solo-amber-pale); }

.bandit-rules { gap: 18px; }

.bandit-rules__intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(210px, 1.1fr);
  gap: 22px;
  align-items: end;
}

.bandit-rules__intro h1 {
  margin: 0;
  font-family: var(--solo-display);
  font-size: clamp(48px, 13vw, 72px);
  font-weight: 950;
  line-height: .76;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.bandit-rules__intro p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
  line-height: 1.5;
}

.bandit-rules__demo {
  max-width: 520px;
  display: grid;
  gap: 7px;
  margin-inline: auto;
}

.bandit-board-frame {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 176, 0, .38);
  background: #101116;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
}

.bandit-board-caption,
.bandit-machine__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, .56);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.bandit-board-caption strong,
.bandit-machine__heading strong {
  color: var(--solo-amber-pale);
  font-family: var(--solo-display);
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

.bandit-board {
  position: relative;
  height: clamp(164px, 43vw, 204px);
  overflow: hidden;
  background: #08090c;
}

.bandit-reels {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
}

.bandit-reel {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 0;
  background: #191b21;
  color: #fff;
  overflow: hidden;
  opacity: 1;
  transition: border-color 150ms ease, background 150ms ease;
}

.bandit-reel.is-next { border-color: var(--solo-amber); background: rgba(255, 176, 0, .12); }
.bandit-reel.is-filled { background: var(--solo-paper); color: var(--solo-ink); }
.bandit-reel.is-empty:not(.is-next) { color: rgba(255, 255, 255, .28); }

.bandit-reel small {
  position: absolute;
  z-index: 2;
  top: 4px;
  right: 5px;
  color: currentColor;
  font-family: var(--solo-body);
  font-size: 7px;
  font-weight: 850;
  opacity: .48;
}

.bandit-reel span {
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  font-family: var(--solo-display);
  font-size: clamp(27px, 8vw, 43px);
  font-variant-numeric: tabular-nums;
  font-weight: 950;
  line-height: 1;
}

.bandit-reel.is-filled span { border-bottom-color: rgba(23, 24, 27, .11); }
.bandit-reel span:last-child { border-bottom: 0; }

.bandit-paylines {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bandit-paylines polyline {
  fill: none;
  stroke: var(--solo-amber);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
  opacity: .72;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .55));
}

.bandit-paylines polyline:nth-child(n + 4) { opacity: .24; stroke-width: 2; }

.bandit-reel.is-new span { animation: bandit-reel-snap 430ms cubic-bezier(.16, 1, .3, 1) both; }
.bandit-reel.is-new span:nth-of-type(2) { animation-delay: 45ms; }
.bandit-reel.is-new span:nth-of-type(3) { animation-delay: 90ms; }

@keyframes bandit-reel-snap {
  from { opacity: .2; transform: translateY(-45%); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.bandit-pattern-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--solo-line);
  border-top: 0;
}

.bandit-pattern-strip span { min-width: 0; display: grid; gap: 2px; padding: 8px; }
.bandit-pattern-strip span + span { border-left: 1px solid var(--solo-line); }
.bandit-pattern-strip strong { font-family: var(--solo-display); font-size: 15px; font-variant-numeric: tabular-nums; }
.bandit-pattern-strip small { overflow: hidden; color: rgba(255, 255, 255, .46); font-size: 8px; line-height: 1.3; text-overflow: ellipsis; }

.bandit-example-scan,
.bandit-scan-feed {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--solo-line);
  background: rgba(255, 255, 255, .035);
}

.bandit-example-scan { min-height: 58px; padding: 8px 10px; border-top: 0; }
.bandit-example-scan > span,
.bandit-scan-feed > span { min-width: 0; display: grid; gap: 2px; }
.bandit-example-scan small,
.bandit-scan-feed small { color: var(--solo-amber-pale); font-size: 7px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.bandit-example-scan strong,
.bandit-scan-feed strong { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.bandit-example-scan b { color: rgba(255, 255, 255, .55); font-size: 9px; text-transform: uppercase; }

.bandit-scan-icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  color: var(--solo-amber-pale);
}

.bandit-rule-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.bandit-rule-list li { min-width: 0; display: grid; align-content: start; gap: 4px; padding: 9px 10px; border-top: 1px solid var(--solo-line); }
.bandit-rule-list li + li { border-left: 1px solid var(--solo-line); }
.bandit-rule-list strong { color: var(--solo-amber-pale); font-family: var(--solo-display); font-size: 22px; font-variant-numeric: tabular-nums; }
.bandit-rule-list span { color: rgba(255, 255, 255, .54); font-size: 9px; line-height: 1.35; }

.bandit-rules__footer { display: grid; }
.bandit-prototype-note { margin: 8px auto 0; max-width: 480px; color: rgba(255, 255, 255, .42); font-size: 9px; line-height: 1.4; text-align: center; }

.solo-mode-picker {
  display: grid;
  gap: 8px;
}

.solo-mode {
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 65px;
  padding: 9px 13px 9px 10px;
  border: 1px solid var(--solo-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .035);
  color: #fff;
  text-align: left;
}

.solo-mode.is-selected {
  border-color: rgba(255, 176, 0, .72);
  background: rgba(255, 176, 0, .095);
  box-shadow: inset 3px 0 0 var(--solo-amber);
}

.solo-mode__mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: rgba(255, 255, 255, .66);
  font-family: var(--solo-display);
  font-size: 24px;
  font-weight: 900;
}

.solo-mode.is-selected .solo-mode__mark {
  border-color: var(--solo-amber);
  background: var(--solo-amber);
  color: var(--solo-ink);
}

.solo-mode strong,
.solo-mode small { display: block; }
.solo-mode strong { font-size: 14px; font-weight: 820; }
.solo-mode small { margin-top: 3px; color: rgba(255, 255, 255, .5); font-size: 11px; }

.solo-lobby__footer { margin-top: auto; }

.solo-rule-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 13px;
  border-top: 1px solid var(--solo-line);
  border-bottom: 1px solid var(--solo-line);
}

.solo-rule-strip span {
  display: grid;
  gap: 2px;
  padding: 10px 8px;
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  text-align: center;
  text-transform: uppercase;
}

.solo-rule-strip span + span { border-left: 1px solid var(--solo-line); }
.solo-rule-strip strong { color: #fff; font-family: var(--solo-display); font-size: 16px; letter-spacing: .02em; }

.solo-mode-explainer {
  min-height: 38px;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  line-height: 1.45;
}

.solo-mode-explainer strong { color: #fff; }

.solo-start {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 0;
  border-radius: 13px;
  background: var(--solo-amber);
  color: var(--solo-ink);
  font-size: 15px;
  font-weight: 880;
}

.solo-start span { font-size: 25px; }

.solo-safety {
  margin: 10px 8px 0;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.solo-preparing {
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 28px;
  text-align: center;
}

.solo-preparing h1 { max-width: 440px; font-size: clamp(40px, 11vw, 66px); }
.solo-preparing > p:not(.solo-kicker) { max-width: 310px; }
.solo-preparing--error .solo-start { max-width: 360px; margin-top: 24px; }

.solo-loader {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 40px;
  margin-bottom: 24px;
}

.solo-loader i {
  width: 8px;
  height: 16px;
  transform: skewX(-25deg);
  background: var(--solo-amber);
  animation: solo-loader 900ms ease-in-out infinite alternate;
}
.solo-loader i:nth-child(2) { height: 27px; animation-delay: 130ms; }
.solo-loader i:nth-child(3) { height: 38px; animation-delay: 260ms; }

@keyframes solo-loader { to { opacity: .22; transform: translateY(-6px) skewX(-25deg); } }

.solo-text-button {
  min-height: 44px;
  margin-top: 15px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .62);
  font-weight: 720;
}

.solo-hud {
  position: absolute;
  z-index: 12;
  top: 0;
  left: 0;
  right: 0;
  padding: calc(10px + env(safe-area-inset-top)) 12px 0;
  pointer-events: none;
}

.solo-hud button { pointer-events: auto; }

.solo-collection-hud {
  position: absolute;
  z-index: 12;
  top: 0;
  right: 0;
  left: 0;
  padding: calc(10px + env(safe-area-inset-top)) 12px 0;
  pointer-events: none;
}

.solo-collection-hud button { pointer-events: auto; }

.bandit-hud {
  position: absolute;
  z-index: 12;
  top: 0;
  right: 0;
  left: 0;
  padding: calc(10px + env(safe-area-inset-top)) 12px 0;
  pointer-events: none;
}

.bandit-hud button { pointer-events: auto; }
.bandit-hud__top { max-width: 470px; margin-inline: auto; }

.bandit-hud__meters {
  display: flex;
  gap: 6px;
  align-items: stretch;
}

.bandit-hud__meters > span {
  min-width: 74px;
  display: grid;
  align-content: center;
  justify-items: end;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 999px;
  background: rgba(8, 9, 12, .8);
  backdrop-filter: blur(10px);
}

.bandit-hud__meters small { color: rgba(255, 255, 255, .46); font-size: 7px; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.bandit-hud__meters strong { color: var(--solo-amber-pale); font-family: var(--solo-display); font-size: 18px; font-variant-numeric: tabular-nums; line-height: .9; }

.bandit-machine {
  max-width: 470px;
  display: grid;
  gap: 7px;
  margin: 0 auto;
  padding: 9px;
  border: 1px solid rgba(255, 176, 0, .42);
  background: rgba(8, 9, 12, .88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .35);
  backdrop-filter: blur(14px);
}

.bandit-machine__readout {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 10px;
  align-items: baseline;
  padding: 1px 2px 0;
}

.bandit-machine__readout span { overflow: hidden; color: rgba(255, 255, 255, .47); font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.bandit-machine__readout strong { color: var(--solo-amber-pale); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }

.bandit-scan-feed {
  min-height: 60px;
  padding: 7px 9px;
  border-color: rgba(255, 176, 0, .22);
  background: rgba(255, 176, 0, .055);
}

.bandit-scan-feed em { overflow: hidden; color: rgba(255, 255, 255, .48); font-size: 8px; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.bandit-scan-feed > b { min-width: 40px; color: var(--solo-amber-pale); font-family: var(--solo-display); font-size: 24px; font-variant-numeric: tabular-nums; text-align: right; }

.bandit-capture-notice { bottom: calc(22px + env(safe-area-inset-bottom)); }
.bandit-capture-notice.is-checking strong,
.bandit-capture-notice.is-retry strong { max-width: 160px; text-align: right; }

.solo-collection-counter {
  display: grid;
  grid-template-columns: auto auto 1px auto auto;
  gap: 5px;
  align-items: baseline;
  min-height: 36px;
  padding: 8px 11px 7px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 999px;
  background: rgba(8, 9, 12, .78);
  color: #fff;
  backdrop-filter: blur(10px);
}

.solo-collection-counter strong { font-family: var(--solo-display); font-size: 16px; font-variant-numeric: tabular-nums; }
.solo-collection-counter span { color: rgba(255, 255, 255, .48); font-size: 8px; text-transform: uppercase; }
.solo-collection-counter i { width: 1px; height: 14px; align-self: center; background: rgba(255, 255, 255, .2); }

.solo-collection-brief {
  max-width: 470px;
  display: grid;
  gap: 2px;
  margin: 0 auto;
  padding: 10px 13px;
  border-radius: 10px;
  background: rgba(8, 9, 12, .78);
  color: #fff;
  box-shadow: 0 11px 30px rgba(0, 0, 0, .24);
  backdrop-filter: blur(12px);
}

.solo-collection-brief strong { font-size: 12px; }
.solo-collection-brief span { color: rgba(255, 255, 255, .52); font-size: 9px; }

.solo-hud__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.solo-hud__exit {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 999px;
  background: rgba(8, 9, 12, .7);
  color: rgba(255, 255, 255, .76);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 760;
}

.solo-timer {
  min-width: 77px;
  padding: 8px 12px 7px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 999px;
  background: rgba(8, 9, 12, .7);
  color: #fff;
  font-family: var(--solo-display);
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  backdrop-filter: blur(10px);
}

.solo-timer.is-ending { border-color: var(--solo-amber); color: var(--solo-amber-pale); }

.solo-target-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: stretch;
  max-width: 470px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 38px rgba(0, 0, 0, .28);
}

.solo-target-card__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 13px;
  background: rgba(12, 13, 16, .82);
  backdrop-filter: blur(16px);
}

.solo-target-card__copy span { font-size: 13px; font-weight: 850; }
.solo-target-card__copy small { margin-top: 2px; color: rgba(255, 255, 255, .52); font-size: 9px; }

.solo-target-plate {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 68px;
  border-left: 5px solid var(--solo-amber);
  background:
    radial-gradient(circle at 7px 7px, #aaa 0 2px, transparent 2.5px),
    radial-gradient(circle at calc(100% - 7px) 7px, #aaa 0 2px, transparent 2.5px),
    var(--solo-paper);
  color: var(--solo-ink);
  font-family: var(--solo-display);
  font-size: 25px;
  font-variant-numeric: tabular-nums;
  font-weight: 950;
  letter-spacing: .01em;
}

.solo-target-number { font-size: 42px; letter-spacing: .02em; line-height: 1; }
.solo-target-plate > span:last-child { letter-spacing: -.04em; }

.solo-attempt-dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  max-width: 470px;
  margin: 7px auto 0;
}

.solo-attempt-dot {
  min-width: 0;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 9px;
  background: rgba(8, 9, 12, .7);
  backdrop-filter: blur(10px);
}

.solo-attempt-dot i { width: 6px; height: 6px; border: 1px solid rgba(255, 255, 255, .42); border-radius: 50%; }
.solo-attempt-dot strong { font-family: var(--solo-display); font-size: 17px; }
.solo-attempt-dot small { color: rgba(255, 255, 255, .44); font-size: 8px; text-transform: uppercase; }
.solo-attempt-dot.is-valid { border-color: rgba(255, 176, 0, .42); }
.solo-attempt-dot.is-valid small { color: var(--solo-amber-pale); }
.solo-attempt-dot.is-wrong-side { opacity: .58; }
.solo-attempt-dot.is-exact { border-color: var(--solo-amber); background: rgba(255, 176, 0, .18); }

.solo-live-best {
  min-height: 30px;
  max-width: 470px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin: 7px auto 0;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(8, 9, 12, .7);
  color: rgba(255, 255, 255, .52);
  font-size: 9px;
  backdrop-filter: blur(10px);
}

.solo-live-best strong { color: #fff; font-family: var(--solo-display); font-size: 14px; }

.solo-capture-notice {
  position: absolute;
  z-index: 13;
  left: 50%;
  bottom: calc(108px + env(safe-area-inset-bottom));
  width: min(310px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 176, 0, .55);
  border-radius: 12px;
  background: rgba(13, 14, 17, .91);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .4);
  opacity: 0;
  transform: translate(-50%, 18px);
  transition: opacity 160ms ease, transform 230ms cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
  backdrop-filter: blur(18px);
}

.solo-capture-notice.is-visible { opacity: 1; transform: translate(-50%, 0); }
.solo-capture-notice span { color: var(--solo-amber-pale); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.solo-capture-notice strong { grid-row: 1 / 3; grid-column: 2; font-family: var(--solo-display); font-size: 35px; }
.solo-capture-notice small { margin-top: 2px; color: rgba(255, 255, 255, .55); font-size: 10px; }
.solo-capture-notice.is-wrong-side { border-color: rgba(255, 255, 255, .2); }
.solo-capture-notice.is-wrong-side span { color: rgba(255, 255, 255, .72); }
.solo-capture-notice.is-exact { border-color: var(--solo-amber); background: rgba(35, 27, 8, .95); }
.solo-capture-notice.is-repeat { border-color: rgba(255, 255, 255, .25); }
.solo-capture-notice.is-checking { border-color: rgba(255, 213, 106, .72); }
.solo-capture-notice.is-retry { border-color: rgba(255, 139, 115, .72); }
.solo-capture-notice.is-checking strong,
.solo-capture-notice.is-retry strong { font-family: inherit; font-size: 14px; }

.solo-capture-control {
  position: absolute;
  z-index: 14;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  left: 14px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.solo-capture-button {
  width: min(470px, 100%);
  min-height: 76px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 9px 17px 9px 11px;
  border: 1px solid var(--solo-amber);
  border-radius: 17px;
  background: var(--solo-amber);
  color: var(--solo-ink);
  box-shadow: 0 17px 46px rgba(0, 0, 0, .44);
  text-align: left;
  pointer-events: auto;
  transition: transform 140ms ease, opacity 140ms ease, background 140ms ease;
}

.solo-capture-button:not(:disabled):active { transform: scale(.985); }
.solo-capture-button:disabled { border-color: rgba(255, 255, 255, .16); background: rgba(17, 19, 23, .9); color: rgba(255, 255, 255, .56); }
.solo-capture-button > span:last-child { display: grid; gap: 3px; }
.solo-capture-button strong { font-size: 15px; }
.solo-capture-button small { color: currentColor; font-size: 9px; opacity: .62; }

.solo-shutter-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.solo-shutter-mark i { width: 30px; height: 30px; border-radius: 50%; background: currentColor; }
.solo-capture-button:disabled .solo-shutter-mark i { width: 12px; height: 12px; }

.solo-result {
  display: flex;
  flex-direction: column;
  padding: calc(34px + env(safe-area-inset-top)) 18px calc(18px + env(safe-area-inset-bottom));
}

.solo-result__header h1 { font-size: clamp(47px, 14vw, 76px); }
.solo-result__header > p:last-child { margin: 13px 0 0; color: rgba(255, 255, 255, .53); font-size: 12px; }

.solo-result-score {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-top: 27px;
  padding: 15px 17px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--solo-paper);
  color: var(--solo-ink);
}

.solo-result-score::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--solo-amber);
}

.solo-result-score span { align-self: center; font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.solo-result-score strong { grid-row: 1 / 3; grid-column: 2; font-family: var(--solo-display); font-size: clamp(31px, 9vw, 52px); line-height: .9; }
.solo-result-score small { margin-top: 3px; color: #66686c; font-size: 11px; }
.solo-result-score.is-empty { min-height: 94px; }
.solo-result-score.is-empty strong { grid-row: auto; grid-column: 1; font-size: 40px; }
.solo-result-score.is-empty small { grid-column: 1 / -1; max-width: 290px; }
.solo-result-score.is-exact { background: var(--solo-amber); }
.solo-result-score.is-exact::before { background: var(--solo-ink); }

.solo-result-list {
  display: grid;
  gap: 7px;
  margin: 13px 0 20px;
  padding: 0;
  list-style: none;
}

.solo-result-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(98px, auto);
  align-items: center;
  gap: 10px;
  min-height: 53px;
  padding: 8px 12px;
  border: 1px solid var(--solo-line);
  border-radius: 11px;
  background: rgba(255, 255, 255, .035);
}

.solo-result-list li.is-best { border-color: rgba(255, 176, 0, .62); box-shadow: inset 3px 0 0 var(--solo-amber); }
.solo-result-list li.is-wrong-side { opacity: .52; }
.solo-result-list li.is-empty { display: block; padding: 16px; color: rgba(255, 255, 255, .5); font-size: 12px; line-height: 1.45; }
.solo-result-list span { overflow: hidden; color: rgba(255, 255, 255, .48); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.solo-result-list strong { font-family: var(--solo-display); font-size: 25px; }
.solo-result-list small { color: var(--solo-amber-pale); font-size: 10px; text-align: right; }

.solo-profile-average {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 3px 12px;
  margin: -7px 0 18px;
  padding: 11px 13px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.solo-profile-average span {
  color: rgba(255, 255, 255, .6);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.solo-profile-average strong {
  grid-row: 1 / 3;
  grid-column: 2;
  color: var(--solo-amber-pale);
  font-family: var(--solo-display);
  font-size: 22px;
}

.solo-profile-average small { color: rgba(255, 255, 255, .38); font-size: 9px; }

.bandit-result { gap: 14px; }
.bandit-result > .solo-session-header { margin-bottom: 4px; }
.bandit-result__header { display: grid; gap: 7px; }
.bandit-result__header h1 { margin: 0; font-size: clamp(45px, 13vw, 72px); }
.bandit-result__header p { margin: 0; color: rgba(255, 255, 255, .52); font-size: 11px; }
.bandit-result__board { max-width: 520px; width: 100%; margin-inline: auto; padding: 8px; border: 1px solid rgba(255, 176, 0, .35); background: #101116; }
.bandit-result__score { min-height: 76px; margin-top: 0; border-top: 3px solid var(--solo-amber); }
.bandit-result__score::before { display: none; }
.bandit-result__list { margin: 0; }
.bandit-result__list li { grid-template-columns: minmax(80px, 1fr) minmax(0, 1.3fr) auto; }
.bandit-result__list strong { overflow: hidden; font-family: var(--solo-body); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.bandit-result__list span { white-space: normal; }
.bandit-result .bandit-prototype-note { margin-top: 0; }

.solo-result__actions { margin-top: auto; }
.solo-result__actions .solo-text-button { width: 100%; }

body[data-solo-state] .controls,
body[data-solo-state] .debug-panel,
body[data-solo-state] .anti-cheat-panel,
body[data-solo-state] .topbar { display: none !important; }

body[data-solo-state="playing"] .result-card { display: none !important; }
body[data-solo-state="collecting"] .result-card { display: none !important; }
body[data-solo-state="bandit-playing"] .result-card { display: none !important; }
body[data-solo-state="bandit-playing"] .status-wrap { display: none !important; }
body[data-solo-state="playing"] .status-wrap { top: calc(215px + env(safe-area-inset-top)); }
body[data-solo-state="playing"] .motion-challenge { top: calc(254px + env(safe-area-inset-top)); }
body[data-solo-state="collecting"] .status-wrap { top: calc(116px + env(safe-area-inset-top)); }
body[data-solo-state="collecting"] .motion-challenge { top: calc(155px + env(safe-area-inset-top)); }
body[data-solo-state="bandit-playing"] .status-wrap { top: calc(332px + env(safe-area-inset-top)); }
body[data-solo-state="bandit-playing"] .motion-challenge { top: calc(371px + env(safe-area-inset-top)); }

@media (min-width: 700px) {
  .solo-lobby,
  .solo-result { padding-left: max(28px, calc((100vw - 640px) / 2)); padding-right: max(28px, calc((100vw - 640px) / 2)); }
  body[data-solo-state="bandit-playing"] .status-wrap { top: calc(368px + env(safe-area-inset-top)); }
  body[data-solo-state="bandit-playing"] .motion-challenge { top: calc(407px + env(safe-area-inset-top)); }
}

@media (max-height: 700px) {
  .solo-lobby { gap: 14px; }
  .solo-lobby__copy h1 { font-size: 41px; }
  .solo-lobby__copy > p:last-child { margin-top: 10px; }
  .solo-mode { min-height: 56px; }
  .solo-rule-strip { margin-bottom: 8px; }
  .solo-rule-list li { min-height: 60px; }
  .solo-rule-list small { font-size: 9px; }
  .bandit-board { height: 150px; }
  body[data-solo-state="bandit-playing"] .status-wrap { top: calc(282px + env(safe-area-inset-top)); }
  body[data-solo-state="bandit-playing"] .motion-challenge { top: calc(321px + env(safe-area-inset-top)); }
}

@media (max-width: 560px) {
  .solo-community { grid-template-columns: auto auto; }
  .solo-community p { grid-column: 1 / -1; text-align: left; }
  .bandit-rules__intro { grid-template-columns: 1fr; gap: 12px; }
  .bandit-rules__intro h1 { font-size: clamp(46px, 14vw, 62px); }
  .bandit-rules__intro p { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .solo-loader i { animation: none; }
  .solo-capture-notice { transition: none; }
  .solo-mode-tile { transition: none; }
  .bandit-reel { transition: none; }
  .bandit-reel.is-new span { animation: none; }
}
