/* Estilos específicos del juego "Duelo en Carril" (el resto viene de ../shared.css). */

.lane {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  background: var(--stone);
  padding: 6px;
  border-radius: 8px;
  overflow-x: auto;
}

.lane-tile {
  flex: 1;
  min-width: 32px;
  height: 42px;
  background: #4a3d2f;
  border: 1px solid #2b2319;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
}
