.game-tab-content[data-game-id="farkle"][data-game-component="farkle-scoring"] .farkle-meta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 190px));
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.game-tab-content[data-game-id="farkle"][data-game-component="farkle-scoring"] .farkle-meta-row .farkle-new-game-button,
.game-tab-content[data-game-id="farkle"][data-game-component="farkle-scoring"] .farkle-turn-stats {
  width: 100%;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  color: var(--muted);
  font: inherit;
  font-size: clamp(11px, 2.6vw, 13px);
  font-weight: 760;
}

.game-tab-content[data-game-id="farkle"][data-game-component="farkle-scoring"] .farkle-meta-row .farkle-new-game-button {
  align-self: stretch;
  max-width: none;
}

.game-tab-content[data-game-id="farkle"][data-game-component="farkle-scoring"] .farkle-turn-stats {
  display: grid;
  place-items: center;
  padding: 0 8px;
  text-align: center;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 390px) {
  .game-tab-content[data-game-id="farkle"][data-game-component="farkle-scoring"] .farkle-meta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
