// if game not active but winner exists => just show winner message if (!gameActive && winner) const winnerName = winner === 'alpha' ? 'ALPHA' : 'BETA'; targetMessageSpan.innerHTML = `🏁 GAME OVER — $winnerName WINS! Press RESET 🏁`; winnerAlertSpan.style.display = 'inline-block';