Fixed bug where bead highlights were not showing in the tutorial because column validation used incorrect minValidColumn calculation (5 - abacusColumns) instead of checking against actual column range. Changed from: if (columnIndex < minValidColumn) return To: if (columnIndex < 0 || columnIndex >= abacusColumns) return This ensures highlights work correctly regardless of abacusColumns value. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>