/* Toggle Cacheta / Cachetão — pill abaixo da barra de rank (Figma) */
.lobby-game-mode {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 0;
  box-sizing: border-box;
}

.lobby-game-mode__inner {
  display: flex;
  align-items: stretch;
  min-height: 40px;
  padding: 5px 6px;
  border-radius: 9999px;
  background: rgba(28, 82, 40, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Cacheta / Cachetão — Figma: Inter 14/24 Regular */
.lobby-game-mode__option,
.lobby-game-mode__option span {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal; /* Regular */
  line-height: 24px;
  letter-spacing: 0%;
  leading-trim: none;
}

.lobby-game-mode__option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: none;
  border-radius: 9999px;
  padding: 0.35rem 0.75rem;
  color: var(--cx-text-primary, #fbfcfc);
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    color 0.15s ease,
    background 0.18s ease,
    box-shadow 0.15s ease;
}

.lobby-game-mode__option:hover:not(.lobby-game-mode__option--active) {
  color: #ffffff;
}

.lobby-game-mode__option:focus {
  outline: none;
}

.lobby-game-mode__option:focus-visible {
  outline: 2px solid var(--cx-accent-cyan, #03f3eb);
  outline-offset: 2px;
}

.lobby-game-mode__option--active {
  color: var(--cx-surface-button-dark, #1c5228);
  background: linear-gradient(185.33deg, #03f3eb 3.8%, #a6d90f 98.75%);
  box-shadow: 0 0.12rem 0.45rem rgba(0, 40, 18, 0.2);
}

.lobby-game-mode__option--active:focus-visible {
  outline-color: var(--cx-surface-button-dark, #1c5228);
}
